pineapple/externals/vcpkg/ports/pdal/cmake-project-include.cmake
2022-07-23 03:01:36 +02:00

6 lines
233 B
CMake
Executable file

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()