diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2020-06-21 14:28:37 +0200 |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2020-07-09 17:02:42 +0200 |
commit | d654bf3449a24d412378af6c3aea53fa2899ad7d (patch) | |
tree | 7b5ac126f179e5513bbbc48fa03d3c598b02fec1 /bootstrap | |
parent | e5798126fcfd08c7ca0f0f8d1fb627b04f655198 (diff) | |
download | cmake-d654bf3449a24d412378af6c3aea53fa2899ad7d.tar.gz |
STL Support: Add cm::filesystem::path in <cm/filesystem>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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" |