mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 05:21:49 +08:00
465dfc5e0f
* Update to 2.4.0 * Update versions * Use check, not patch, for C++17 filesystem support * Update versions * Update license * De-vendor nanoflann and nlohmann-json * Update versions * Fix nlohmann de-vendoring * Update versions
7 lines
233 B
CMake
7 lines
233 B
CMake
include(CheckIncludeFileCXX)
|
|
|
|
check_include_file_cxx("filesystem" HAVE_CXX17_FILESYSTEM)
|
|
if(NOT HAVE_CXX17_FILESYSTEM)
|
|
message(FATAL_ERROR "Unable to find <filesystem> header. PDAL requires full C++17 compiler support.")
|
|
endif()
|