summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Matías Locatti2023-02-27 01:01:44 -0300
committerGravatar Matías Locatti2023-02-27 18:44:14 -0300
commitc38bb96a2c1e3b9e536584403e2acd9623b02b92 (patch)
tree669d22640971cde2d9142a0011e9d47bce023157 /src/video_core
parentMerge pull request #9849 from ameerj/async-astc (diff)
downloadyuzu-c38bb96a2c1e3b9e536584403e2acd9623b02b92.tar.gz
yuzu-c38bb96a2c1e3b9e536584403e2acd9623b02b92.tar.xz
yuzu-c38bb96a2c1e3b9e536584403e2acd9623b02b92.zip
Partially apply LTO to only core and video_core projects.
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index 4742bcbe9..e904573d7 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -330,3 +330,7 @@ endif()
330if (YUZU_USE_PRECOMPILED_HEADERS) 330if (YUZU_USE_PRECOMPILED_HEADERS)
331 target_precompile_headers(video_core PRIVATE precompiled_headers.h) 331 target_precompile_headers(video_core PRIVATE precompiled_headers.h)
332endif() 332endif()
333
334if (YUZU_ENABLE_LTO)
335 set_property(TARGET video_core PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
336endif()