File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ option(USE_WERROR "Tell the compiler to make the build fail when warnings are pr
132132option (USE_PEDANTIC "Tell the compiler to be pedantic" OFF )
133133option (USE_DEBUG_OPTIMIZE "Try to optimize the debug build" ON )
134134
135- if (CMAKE_GENERATOR MATCHES "^Ninja" )
135+ if (CMAKE_GENERATOR MATCHES "^Ninja" OR APPLE )
136136 # It isn't currently supported with Ninja yet:
137137 #
138138 # > Note that the IMPLICIT_DEPENDS option is currently supported only for
@@ -143,6 +143,9 @@ if (CMAKE_GENERATOR MATCHES "^Ninja")
143143 #
144144 # It would be better to be able to know if IMPLICIT_DEPENDS is supported
145145 # by the current generator instead of comparing generator name.
146+
147+ # It is broken on macOS.
148+ # See: https://github.com/DaemonEngine/Daemon/issues/1549
146149 option (USE_PRECOMPILED_HEADER "Improve build times by using a precompiled header" OFF )
147150else ()
148151 option (USE_PRECOMPILED_HEADER "Improve build times by using a precompiled header" ON )
You can’t perform that action at this time.
0 commit comments