From d6a5e0f1354ca6c4266ab2d4f5a6584c85076672 Mon Sep 17 00:00:00 2001 From: BagelSketches Date: Thu, 3 Jul 2025 18:12:04 +1000 Subject: [PATCH] Added Instal QT Directory when building on windows --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 24f4b32b..109d03d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -649,6 +649,7 @@ if (ISLE_BUILD_CONFIG) add_custom_command(TARGET isle-config POST_BUILD COMMAND "${WINDEPLOYQT_EXECUTABLE}" "$" + "--dir QTLibs" "--no-compiler-runtime" "--no-opengl-sw" "--no-system-d3d-compiler" @@ -656,6 +657,7 @@ if (ISLE_BUILD_CONFIG) "--no-quick-import" COMMENT "Running windeployqt with minimal dependencies" ) + install(DIRECTORY QTLibs DESTINATION "${CMAKE_INSTALL_BINDIR}") else() message(WARNING "windeployqt not found.") endif()