From 2880d40dfb50b8ef2f974895d99d84bda667b2ff Mon Sep 17 00:00:00 2001 From: ayeteadoe Date: Sat, 1 Nov 2025 13:17:51 -0700 Subject: [PATCH] CMake: Specify no translations for Qt deploy script on Windows When building Ladybird with the Qt UI framework on Windows, we were getting the following warning in the CMake target post build step: "Could not find any translations in \vcpkg_installed\ x64-windows\translations\Qt6 (developer build?)". We now tell the deploy script that we have no translations, which removes the warning. --- UI/Qt/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/Qt/CMakeLists.txt b/UI/Qt/CMakeLists.txt index 1b6df0b08a0..927bfe3d995 100644 --- a/UI/Qt/CMakeLists.txt +++ b/UI/Qt/CMakeLists.txt @@ -27,6 +27,7 @@ if (WIN32) qt_deploy_runtime_dependencies( EXECUTABLE $ PLUGINS_DIR $ + NO_TRANSLATIONS ) ")