We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3241e30 commit 6502748Copy full SHA for 6502748
CMakeLists.txt
@@ -73,6 +73,10 @@ endif(CMAKE_CONFIGURATION_TYPES)
73
mark_as_advanced(CMAKE_BUILD_TYPE)
74
mark_as_advanced(CMAKE_CONFIGURATION_TYPES)
75
76
+# Frameworks are deprecated in CMake, so avoid finding them
77
+set(CMAKE_FIND_FRAMEWORK NEVER)
78
+
79
80
#------------------------------------------------------------------------------
81
# Once we do a run, we want our ENABLE_ALL setting to be consistent in
82
# subsequent CMake runs
tcl/CMakeLists.txt
@@ -32,7 +32,6 @@ endif (APPLE)
32
if (NOT ENABLE_TCL AND NOT DISABLE_TCL)
33
34
set(TCL_ENABLE_TK ON CACHE BOOL "enable tk")
35
- set(CMAKE_FIND_FRAMEWORK NEVER)
36
find_package(TCL "${TCL_VERSION}")
37
38
if (NOT TCL_FOUND AND NOT DEFINED ENABLE_TCL)
0 commit comments