From eb95d68a43219007737e68e62f89e7903fc665db Mon Sep 17 00:00:00 2001 From: saturneric Date: Thu, 1 May 2025 20:12:06 +0200 Subject: fix: portable app builds on windows Addresses an issue with portable application builds on Windows. Specifically, it ensures that necessary modules are correctly placed in the application directory, resolving a problem where these modules were not being included in the final build. It also removes static libraries from the binary directory. --- src/core/function/GlobalSettingStation.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/core/function/GlobalSettingStation.cpp') diff --git a/src/core/function/GlobalSettingStation.cpp b/src/core/function/GlobalSettingStation.cpp index 21f1c743..28b4ade7 100644 --- a/src/core/function/GlobalSettingStation.cpp +++ b/src/core/function/GlobalSettingStation.cpp @@ -170,13 +170,7 @@ class GlobalSettingStation::Impl { #endif #if defined(_WIN32) || defined(WIN32) - -#ifdef NDEBUG return exec_binary_path + "/../modules"; -#else - return exec_binary_path + "/../modules/bin"; -#endif - #endif #if defined(__APPLE__) && defined(__MACH__) -- cgit v1.2.3