diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2020-12-13 04:20:24 +0100 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2020-12-13 07:28:51 +0100 |
commit | 292dd642cefb3717363e96974f055da9dc1cbf23 (patch) | |
tree | 886e3c6f8f7686761198ae3729c3a2f9238532e5 /src | |
parent | common: Update CMakeList to fix build issue with Boost. (diff) | |
download | yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar.gz yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar.bz2 yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar.lz yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar.xz yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.tar.zst yuzu-292dd642cefb3717363e96974f055da9dc1cbf23.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 0981fe90b..0acf70a0a 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -210,7 +210,7 @@ endif() create_target_directory_groups(common) -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 xbyak) if (MSVC) target_link_libraries(common PRIVATE zstd::zstd) |