summaryrefslogtreecommitdiffstats
path: root/configure.cmake
diff options
context:
space:
mode:
authorLeander Beernaert <leander.beernaert@qt.io>2020-03-24 16:29:54 +0100
committerLeander Beernaert <leander.beernaert@qt.io>2020-03-25 13:52:05 +0100
commit8dcf7d2674bfaa18dc0dfd623c58286bf85260ff (patch)
treef1fa545db0d0c448e6017b3c5878406a610230c7 /configure.cmake
parentd0b30de54299e8e6e8b1df0c138494c17c2b2642 (diff)
CMake: Add support for bundled SQLite library
Change-Id: I4d3f6e3bf04eb2fcf337e2c5dbc04b6e6f8ebe0b Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'configure.cmake')
-rw-r--r--configure.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.cmake b/configure.cmake
index 08def15a9f..c11a2a4933 100644
--- a/configure.cmake
+++ b/configure.cmake
@@ -651,6 +651,10 @@ qt_feature("neon"
)
qt_feature_definition("neon" "QT_COMPILER_SUPPORTS_NEON" VALUE "1")
qt_feature_config("neon" QMAKE_PRIVATE_CONFIG)
+qt_feature("posix_fallocate" PRIVATE
+ LABEL "POSIX fallocate()"
+ CONDITION TEST_posix_fallocate
+)
qt_feature("alloca_h" PRIVATE
LABEL "alloca.h"
CONDITION TEST_alloca_h
@@ -771,6 +775,11 @@ qt_configure_add_summary_entry(
qt_configure_add_summary_entry(ARGS "shared")
qt_configure_add_summary_entry(
TYPE "firstAvailableFeature"
+ ARGS "c11 c99 c89"
+ MESSAGE "Using C standard"
+)
+qt_configure_add_summary_entry(
+ TYPE "firstAvailableFeature"
ARGS "c++2a c++17 c++14 c++11"
MESSAGE "Using C++ standard"
)