summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/CMakeLists.txt')
-rw-r--r--src/shader_recompiler/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shader_recompiler/CMakeLists.txt b/src/shader_recompiler/CMakeLists.txt
index 545d69c7e..967ec9ba7 100644
--- a/src/shader_recompiler/CMakeLists.txt
+++ b/src/shader_recompiler/CMakeLists.txt
@@ -230,6 +230,7 @@ add_library(shader_recompiler STATIC
230 ir_opt/texture_pass.cpp 230 ir_opt/texture_pass.cpp
231 ir_opt/verification_pass.cpp 231 ir_opt/verification_pass.cpp
232 object_pool.h 232 object_pool.h
233 precompiled_headers.h
233 profile.h 234 profile.h
234 program_header.h 235 program_header.h
235 runtime_info.h 236 runtime_info.h
@@ -258,3 +259,7 @@ else()
258endif() 259endif()
259 260
260create_target_directory_groups(shader_recompiler) 261create_target_directory_groups(shader_recompiler)
262
263if (YUZU_USE_PRECOMPILED_HEADERS)
264 target_precompile_headers(shader_recompiler PRIVATE precompiled_headers.h)
265endif()