summaryrefslogtreecommitdiffstats
path: root/cmake/QtInternalTargets.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/QtInternalTargets.cmake')
-rw-r--r--cmake/QtInternalTargets.cmake10
1 files changed, 7 insertions, 3 deletions
diff --git a/cmake/QtInternalTargets.cmake b/cmake/QtInternalTargets.cmake
index 91a75983ea..cdaa91ffcb 100644
--- a/cmake/QtInternalTargets.cmake
+++ b/cmake/QtInternalTargets.cmake
@@ -178,15 +178,19 @@ if (MSVC)
if (MSVC_VERSION GREATER_EQUAL 1899)
target_compile_options(PlatformCommonInternal INTERFACE
-Zc:strictStrings
- -Zc:throwingNew
)
+ if (NOT CLANG)
+ target_compile_options(PlatformCommonInternal INTERFACE
+ -Zc:throwingNew
+ )
+ endif()
endif()
- if (MSVC_VERSION GREATER_EQUAL 1909)
+ if (MSVC_VERSION GREATER_EQUAL 1909 AND NOT CLANG)
target_compile_options(PlatformCommonInternal INTERFACE
-Zc:referenceBinding
)
endif()
- if (MSVC_VERSION GREATER_EQUAL 1919)
+ if (MSVC_VERSION GREATER_EQUAL 1919 AND NOT CLANG)
target_compile_options(PlatformCommonInternal INTERFACE
-Zc:externConstexpr
)