From e3a938fb760ef59cedb7708e14d124cb2dcdd749 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Wed, 7 Jan 2026 00:07:25 -0800 Subject: [PATCH] Embed qt.conf in RPCS3 binary --- rpcs3/rpcs3qt/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/CMakeLists.txt b/rpcs3/rpcs3qt/CMakeLists.txt index 5b74a77a59..a8fc4c5886 100644 --- a/rpcs3/rpcs3qt/CMakeLists.txt +++ b/rpcs3/rpcs3qt/CMakeLists.txt @@ -180,7 +180,10 @@ if(HAS_MEMORY_BREAKPOINTS) endif() if(WIN32) - target_sources(rpcs3_ui PUBLIC "../windows.qrc") + target_sources(rpcs3_ui PRIVATE "../windows.qrc") + set_source_files_properties("../windows.qrc" PROPERTIES + RCC_OPTIONS "--include;${CMAKE_CURRENT_SOURCE_DIR}/../qt/etc/qt.conf" + ) target_compile_definitions(rpcs3_ui PRIVATE UNICODE _UNICODE) endif()