shiva::filesystem
#if __has_include(<experimental/filesystem>)
#include <experimental/filesystem>
namespace shiva
{
namespace fs = std::experimental::filesystem;
}
#elif __has_include(<filesystem>)
#include <filesystem>
namespace shiva
{
namespace fs = std::filesystem;
}
#endifif (LINUX)
target_link_libraries(filesystem INTERFACE stdc++fs)
endif(LINUX)
if(APPLE)
target_link_libraries(filesystem INTERFACE c++experimental)
endif(APPLE)Last updated