From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- cmake/modules/FindStdFilesystem_test.cc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 cmake/modules/FindStdFilesystem_test.cc (limited to 'cmake/modules/FindStdFilesystem_test.cc') diff --git a/cmake/modules/FindStdFilesystem_test.cc b/cmake/modules/FindStdFilesystem_test.cc new file mode 100644 index 000000000..413ac3179 --- /dev/null +++ b/cmake/modules/FindStdFilesystem_test.cc @@ -0,0 +1,8 @@ +#include + +namespace fs = std::filesystem; + +int main() { + fs::create_directory("sandbox"); + fs::remove_all("sandbox"); +} -- cgit v1.2.3