From 674e97e383d27b346be26b1827339f62a99577ec Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 1 Apr 2026 01:53:58 -0400 Subject: [PATCH] Fix comp Signed-off-by: crueter --- CMakeLists.txt | 1 + src/network/packet.h | 1 + src/yuzu/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 454d910776..aa25ce9c44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,6 +69,7 @@ endif() # my unity/jumbo build option(ENABLE_UNITY_BUILD "Enable Unity/Jumbo build" OFF) if(MSVC AND ENABLE_UNITY_BUILD) + message(STATUS "Unity build") # Unity builds need big objects for MSVC... add_compile_options(/bigobj) endif() diff --git a/src/network/packet.h b/src/network/packet.h index 9aa2a2c9cf..8c6acd7200 100644 --- a/src/network/packet.h +++ b/src/network/packet.h @@ -5,6 +5,7 @@ #include #include +#include #include "common/common_types.h" namespace Network { diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index f0cd9cbe10..70bfad7151 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -364,7 +364,7 @@ target_sources(yuzu PRIVATE ) # Add the QRC file to package in all QM files -qt_add_resources( +qt_add_resources(yuzu ${QRC_COMPAT_LIST} ${QRC_ICONS} ${QRC_THEMES}