We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2a4c5 commit 85bd880Copy full SHA for 85bd880
CMakeLists.txt
@@ -23,6 +23,12 @@ include (cmake/yup.cmake)
23
_yup_get_project_version_string (${CMAKE_CURRENT_LIST_DIR}/modules yup_version)
24
_yup_message (STATUS "Building project version ${yup_version}")
25
26
+# Disable C++ module dependency scanning for Emscripten (incompatible with clang-scan-deps)
27
+if (EMSCRIPTEN)
28
+ set (CMAKE_CXX_SCANDEP_SOURCE "")
29
+ set (CMAKE_EXPERIMENTAL_CXX_SCANDEP_SOURCE "")
30
+endif()
31
+
32
if (YUP_PLATFORM_MAC)
33
set (CMAKE_OSX_DEPLOYMENT_TARGET 11.0)
34
set (CMAKE_XCODE_GENERATE_SCHEME OFF)
0 commit comments