summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-21 04:45:14 -0300
committerGravatar ameerj2021-07-22 21:51:28 -0400
commiteed6da55b83327c9e3c5a135860c4b815bcca204 (patch)
treea716a1b9420321feb9cb9e6b1925a618e03c3d31
parentshader: Improve goto removal algorithm complexity (diff)
downloadyuzu-eed6da55b83327c9e3c5a135860c4b815bcca204.tar.gz
yuzu-eed6da55b83327c9e3c5a135860c4b815bcca204.tar.xz
yuzu-eed6da55b83327c9e3c5a135860c4b815bcca204.zip
cmake: Link to common in shader_recompiler
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/CMakeLists.txt b/src/shader_recompiler/CMakeLists.txt
index 3d7506de2..051e5d05a 100644
--- a/src/shader_recompiler/CMakeLists.txt
+++ b/src/shader_recompiler/CMakeLists.txt
@@ -175,7 +175,7 @@ add_library(shader_recompiler STATIC
175 shader_info.h 175 shader_info.h
176) 176)
177 177
178target_link_libraries(shader_recompiler PUBLIC fmt::fmt sirit) 178target_link_libraries(shader_recompiler PUBLIC common fmt::fmt sirit)
179 179
180add_executable(shader_util main.cpp) 180add_executable(shader_util main.cpp)
181target_link_libraries(shader_util PRIVATE shader_recompiler) 181target_link_libraries(shader_util PRIVATE shader_recompiler)