From d2a3cf013075653ce7984dc7ac9ab0e47f69c96c Mon Sep 17 00:00:00 2001 From: Craig Edwards Date: Thu, 26 Sep 2024 00:11:07 +0000 Subject: [PATCH] make filesystem not required (required breaks 32 bit windows) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 049d784ac2..35ed78005b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,7 +103,7 @@ else() add_subdirectory(library) endif() -find_package(Filesystem REQUIRED) +find_package(Filesystem) if(DPP_USE_EXTERNAL_JSON) # We do nothing here, we just assume it is on the include path.