mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-01 05:34:04 -05:00
7 lines
233 B
CMake
Executable File
7 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()
|