diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-30 00:12:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 00:12:21 +0200 |
commit | a4f88c7d7c94107df6bfada31617ff553bb5e89e (patch) | |
tree | cb0d3adbbe115604051300ae451a22a4de751b27 /src/core | |
parent | Merge pull request #2729 from yuriks/quaternion-fix (diff) | |
parent | CMake: Re-organize root CMakeLists.txt file (diff) | |
download | yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.gz yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.bz2 yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.lz yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.xz yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.zst yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 7aa81e885..3cdb2b817 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -374,11 +374,7 @@ set(HEADERS telemetry_session.h ) -include_directories(../../externals/dynarmic/include) -include_directories(../../externals/cryptopp) - create_directory_groups(${SRCS} ${HEADERS}) - add_library(core STATIC ${SRCS} ${HEADERS}) target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) -target_link_libraries(core PRIVATE cryptopp dynarmic) +target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic) |