Files
ECAP_Server/cmake/FindFilesystem.cmake
T
2026-06-25 15:44:25 +08:00

8 lines
256 B
CMake

if (NOT TARGET std::filesystem)
add_library(std::filesystem INTERFACE IMPORTED GLOBAL)
set_property(TARGET std::filesystem APPEND PROPERTY INTERFACE_COMPILE_FEATURES cxx_std_17)
endif ()
set(Filesystem_FOUND TRUE)
set(Filesystem_Final_FOUND TRUE)