summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2020-06-21 14:28:37 +0200
committerMarc Chevrier <marc.chevrier@gmail.com>2020-07-09 17:02:42 +0200
commitd654bf3449a24d412378af6c3aea53fa2899ad7d (patch)
tree7b5ac126f179e5513bbbc48fa03d3c598b02fec1 /bootstrap
parente5798126fcfd08c7ca0f0f8d1fb627b04f655198 (diff)
downloadcmake-d654bf3449a24d412378af6c3aea53fa2899ad7d.tar.gz
STL Support: Add cm::filesystem::path in <cm/filesystem>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 6b37164156..2adb5d9a26 100755
--- a/bootstrap
+++ b/bootstrap
@@ -479,6 +479,7 @@ if ${cmake_system_mingw}; then
fi
CMAKE_STD_CXX_HEADERS="\
+ filesystem \
memory \
optional \
shared_mutex \
@@ -486,6 +487,7 @@ CMAKE_STD_CXX_HEADERS="\
utility \
"
CMAKE_STD_CXX_SOURCES="\
+ fs_path \
string_view \
"
@@ -1252,7 +1254,7 @@ echo "C++ compiler on this system is: ${cmake_cxx_compiler} ${cmake_cxx_flags}"
#-----------------------------------------------------------------------------
# Test CXX features
-cmake_cxx_features="make_unique"
+cmake_cxx_features="make_unique filesystem"
for feature in ${cmake_cxx_features}; do
eval "cmake_have_cxx_${feature}=0"