zeek/auxil/vcpkg/ports/pdal/cmake-project-include.cmake
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

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