summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-29 15:12:21 -0700
committerGravatar GitHub2017-05-29 15:12:21 -0700
commita4f88c7d7c94107df6bfada31617ff553bb5e89e (patch)
treecb0d3adbbe115604051300ae451a22a4de751b27 /src/core
parentMerge pull request #2729 from yuriks/quaternion-fix (diff)
parentCMake: Re-organize root CMakeLists.txt file (diff)
downloadyuzu-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.txt6
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
377include_directories(../../externals/dynarmic/include)
378include_directories(../../externals/cryptopp)
379
380create_directory_groups(${SRCS} ${HEADERS}) 377create_directory_groups(${SRCS} ${HEADERS})
381
382add_library(core STATIC ${SRCS} ${HEADERS}) 378add_library(core STATIC ${SRCS} ${HEADERS})
383target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) 379target_link_libraries(core PUBLIC common PRIVATE audio_core video_core)
384target_link_libraries(core PRIVATE cryptopp dynarmic) 380target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic)