diff options
| author | 2017-05-29 15:12:21 -0700 | |
|---|---|---|
| committer | 2017-05-29 15:12:21 -0700 | |
| 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.gz yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.tar.xz yuzu-a4f88c7d7c94107df6bfada31617ff553bb5e89e.zip | |
Merge pull request #2734 from yuriks/cmake-imported-libs
CMake: Use CMake target properties for all libraries
Diffstat (limited to 'src/core')
| -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 | |||
| 374 | telemetry_session.h | 374 | telemetry_session.h |
| 375 | ) | 375 | ) |
| 376 | 376 | ||
| 377 | include_directories(../../externals/dynarmic/include) | ||
| 378 | include_directories(../../externals/cryptopp) | ||
| 379 | |||
| 380 | create_directory_groups(${SRCS} ${HEADERS}) | 377 | create_directory_groups(${SRCS} ${HEADERS}) |
| 381 | |||
| 382 | add_library(core STATIC ${SRCS} ${HEADERS}) | 378 | add_library(core STATIC ${SRCS} ${HEADERS}) |
| 383 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 379 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 384 | target_link_libraries(core PRIVATE cryptopp dynarmic) | 380 | target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic) |