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 fb9b5ab commit 3536b93Copy full SHA for 3536b93
1 file changed
cmake/DaemonFlags.cmake
@@ -265,7 +265,10 @@ if (NOT NACL AND BUILD_CLIENT)
265
endif()
266
267
if (YOKAI_CXX_COMPILER_MSVC_COMPATIBILITY)
268
- set_c_cxx_flag("/MP")
+ if (YOKAI_CXX_COMPILER_MSVC)
269
+ # /MP doesn't do anything and prints a warning in the Clang clone.
270
+ set_c_cxx_flag("/MP")
271
+ endif()
272
273
# There is no flag for standards before C++17
274
if (USE_CPP23 AND USE_RECOMMENDED_CXX_STANDARD)
0 commit comments