summaryrefslogtreecommitdiffstats
path: root/configure.cmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-03-06 13:34:59 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-03-23 16:42:59 +0100
commit7e4361ffbde92f1530ea8b8ea586db05463de1da (patch)
tree17a941e83d6d3b7ec5efc37493ab28beac97e881 /configure.cmake
parent67af991c598e85a99d6f6821358658f737e59b3f (diff)
CMake: "Port" the c89, c99 and c11 features
We can ignore the tests for those features and directly ask CMake whether the compiler supports the respective language version. Change-Id: I31cd35493443fea0c6d0b0a5e641768c3bcbe736 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'configure.cmake')
-rw-r--r--configure.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.cmake b/configure.cmake
index 99ec9e7b33..08def15a9f 100644
--- a/configure.cmake
+++ b/configure.cmake
@@ -474,6 +474,17 @@ qt_feature("c++2a" PUBLIC
CONDITION QT_FEATURE_cxx17 AND TEST_cxx2a
)
qt_feature_config("c++2a" QMAKE_PUBLIC_QT_CONFIG)
+qt_feature("c89"
+ LABEL "C89"
+)
+qt_feature("c99" PUBLIC
+ LABEL "C99"
+ CONDITION c_std_99 IN_LIST CMAKE_C_COMPILE_FEATURES
+)
+qt_feature("c11" PUBLIC
+ LABEL "C11"
+ CONDITION QT_FEATURE_c99 AND c_std_11 IN_LIST CMAKE_C_COMPILE_FEATURES
+)
qt_feature("reduce_exports" PRIVATE
LABEL "Reduce amount of exported symbols"
CONDITION NOT WIN32 AND CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY