From 89e45a61b33ed7ae73aa9903149530462fd760b6 Mon Sep 17 00:00:00 2001 From: DioEgizio <83089242+DioEgizio@users.noreply.github.com> Date: Fri, 14 Oct 2022 16:45:13 +0200 Subject: [PATCH] fix: workaround ghc::filesystem bug Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05ea9f66..45dd691d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,6 +194,9 @@ if(NOT Launcher_FORCE_BUNDLED_LIBS) find_package(tomlplusplus 3.2.0 QUIET) endif() +# Workaround ghc::filesystem bug +set(GHC_FILESYSTEM_WITH_INSTALL OFF) + ####################################### Program Info ####################################### set(Launcher_APP_BINARY_NAME "polymc" CACHE STRING "Name of the Launcher binary")