From 97e00767d36f24d5f3b46f879ee36bcabf1ee24f Mon Sep 17 00:00:00 2001 From: x-tools-author Date: Wed, 28 May 2025 16:08:44 +0800 Subject: [PATCH] chore: remove useless file --- xapps/xapps.cmake | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 xapps/xapps.cmake diff --git a/xapps/xapps.cmake b/xapps/xapps.cmake deleted file mode 100644 index 627ea1dc..00000000 --- a/xapps/xapps.cmake +++ /dev/null @@ -1,35 +0,0 @@ -option(X_ENABLE_X_APPS "Enable apps" OFF) -if(NOT X_ENABLE_X_APPS) - return() -endif() - -if(ANDROID OR IOS) - return() -endif() - -# Remove all main.cpp xTools.rc files from X_SOURCES -set(X_APPS_SOURCES ${X_SOURCES}) -foreach(source ${X_APPS_SOURCES}) - if(${source} MATCHES "main.cpp") - list(REMOVE_ITEM X_APPS_SOURCES ${source}) - endif() - if(${source} MATCHES "xTools.rc") - list(REMOVE_ITEM X_APPS_SOURCES ${source}) - endif() -endforeach() - -# -------------------------------------------------------------------------------------------------- -# xAssistant -include(${CMAKE_CURRENT_LIST_DIR}/xassistant/xAssistant.cmake) - -# -------------------------------------------------------------------------------------------------- -# xDebug -if(NOT QT_VERSION VERSION_LESS "6.8.0") - # include(${CMAKE_CURRENT_LIST_DIR}/xdebug/xDebug.cmake) -endif() - -# -------------------------------------------------------------------------------------------------- -# xPing -if(NOT QT_VERSION VERSION_LESS "6.8.0") - # include(${CMAKE_CURRENT_LIST_DIR}/xping/xPing.cmake) -endif()