summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-06-19 19:46:43 -0400
committerGravatar Fernando Sahmkow2020-06-26 12:25:19 -0400
commit7b893c7963a57bf41f5dad7dd1709985971ce291 (patch)
tree5ea570f5de6969ea8e05f229ba34398b9db5e191 /src
parentTests/HostTiming: Correct GCC Compile error. (diff)
downloadyuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.gz
yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.xz
yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.zip
Common: Fix non-conan build
Diffstat (limited to 'src')
-rw-r--r--src/common/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index aacea0ab7..3cc17d0e9 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -187,6 +187,7 @@ if(ARCHITECTURE_x86_64)
187endif() 187endif()
188 188
189create_target_directory_groups(common) 189create_target_directory_groups(common)
190find_package(Boost 1.71 COMPONENTS context headers REQUIRED)
190 191
191target_link_libraries(common PUBLIC Boost::boost fmt::fmt microprofile) 192target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile)
192target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd xbyak) 193target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd xbyak)