From 919d16ed08682f8d54aca08cb65429e53583774e Mon Sep 17 00:00:00 2001 From: Jaredl-Dev <260281143+Jaredl-Dev@users.noreply.github.com> Date: Fri, 7 Aug 2026 13:43:55 -0700 Subject: [PATCH] unify(legacy-profiler): Make both games inherit legacy profiler (#3075) --- Core/GameEngine/CMakeLists.txt | 1 + Core/Libraries/Source/profile/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/Core/GameEngine/CMakeLists.txt b/Core/GameEngine/CMakeLists.txt index d6255c09dee..e99201e079b 100644 --- a/Core/GameEngine/CMakeLists.txt +++ b/Core/GameEngine/CMakeLists.txt @@ -1179,6 +1179,7 @@ target_include_directories(corei_gameengine_private INTERFACE target_link_libraries(corei_gameengine_private INTERFACE corei_always + core_profile_legacy ) target_compile_definitions(corei_gameengine_private INTERFACE diff --git a/Core/Libraries/Source/profile/CMakeLists.txt b/Core/Libraries/Source/profile/CMakeLists.txt index b0db6bd2dc9..0bdbb3c0fc1 100644 --- a/Core/Libraries/Source/profile/CMakeLists.txt +++ b/Core/Libraries/Source/profile/CMakeLists.txt @@ -32,6 +32,7 @@ target_precompile_headers(core_profile_legacy PRIVATE ) target_link_libraries(core_profile_legacy PRIVATE + core_debug core_wwcommon corei_always )