diff options
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f73dccc..fb04f7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,12 +12,9 @@ if(NOT CMAKE_BUILD_TYPE) STRING "Choose the type of build." FORCE) endif() -if(MSVC AND NOT WXSOURCE) - include(${CMAKE_SOURCE_DIR}/winmsvc.cmake) -else() - find_package(wxWidgets REQUIRED COMPONENTS net core base) - include(${wxWidgets_USE_FILE}) -endif() +find_package(wxWidgets REQUIRED COMPONENTS net core base) +include(${wxWidgets_USE_FILE}) + message(STATUS "CMAKE_BUILD_TYPE:${CMAKE_BUILD_TYPE}") file(GLOB PSP_SRC "*.h" |