1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-18 08:51:52 +08:00
Files
CMake/Source/Checks/cm_cxx_filesystem.cxx
2020-07-09 17:02:42 +02:00

11 lines
143 B
C++

#include <filesystem>
int main()
{
std::filesystem::path p1("/a/b/c");
std::filesystem::path p2("/a/b/c");
return p1 == p2 ? 0 : 1;
}