diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-20 01:46:43 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-26 18:25:19 +0200 |
commit | 7b893c7963a57bf41f5dad7dd1709985971ce291 (patch) | |
tree | 5ea570f5de6969ea8e05f229ba34398b9db5e191 /src | |
parent | Tests/HostTiming: Correct GCC Compile error. (diff) | |
download | yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.gz yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.bz2 yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.lz yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.xz yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.tar.zst yuzu-7b893c7963a57bf41f5dad7dd1709985971ce291.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/CMakeLists.txt | 3 |
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) endif() create_target_directory_groups(common) +find_package(Boost 1.71 COMPONENTS context headers REQUIRED) -target_link_libraries(common PUBLIC Boost::boost fmt::fmt microprofile) +target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile) target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd xbyak) |