34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
diff --git a/cmake/modules/FindwxWidgets.cmake b/cmake/modules/FindwxWidgets.cmake
|
|
index e1f93a6a26..88c5f2487d 100644
|
|
--- a/cmake/modules/FindwxWidgets.cmake
|
|
+++ b/cmake/modules/FindwxWidgets.cmake
|
|
@@ -183,12 +183,12 @@ This module defines the following :prop_tgt:`IMPORTED` targets:
|
|
# Helper macro to control the debugging output globally. There are
|
|
# two versions for controlling how verbose your output should be.
|
|
macro(DBG_MSG _MSG)
|
|
-# message(STATUS
|
|
-# "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
|
|
+ message(STATUS
|
|
+ "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
|
|
endmacro()
|
|
macro(DBG_MSG_V _MSG)
|
|
-# message(STATUS
|
|
-# "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
|
|
+ message(STATUS
|
|
+ "${CMAKE_CURRENT_LIST_FILE}(${CMAKE_CURRENT_LIST_LINE}): ${_MSG}")
|
|
endmacro()
|
|
|
|
# Clear return values in case the module is loaded more than once.
|
|
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
index aee1aaf100..e6db66b00d 100644
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -57,7 +57,7 @@ if (SLIC3R_GUI)
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
set (wxWidgets_CONFIG_OPTIONS "--toolkit=gtk${SLIC3R_GTK}")
|
|
endif ()
|
|
- find_package(wxWidgets 3.2 MODULE REQUIRED COMPONENTS base core adv html gl stc scintilla)
|
|
+ find_package(wxWidgets 3.2 MODULE REQUIRED COMPONENTS base core adv html gl stc)
|
|
|
|
include(${wxWidgets_USE_FILE})
|
|
|