summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-27 22:19:37 -0700
committerGravatar Yuri Kunde Schlesner2017-05-27 22:19:37 -0700
commit3b68600f81078c5cc56f8697746d9ea5a4281d76 (patch)
treeedb451023b0929608770d605bd849cabdb1ecef9
parentCMake: Add cryptopp include path to target property (diff)
downloadyuzu-3b68600f81078c5cc56f8697746d9ea5a4281d76.tar.gz
yuzu-3b68600f81078c5cc56f8697746d9ea5a4281d76.tar.xz
yuzu-3b68600f81078c5cc56f8697746d9ea5a4281d76.zip
CMake: Remove unnecessary include_directories for dynarmic
Dynarmic already adds the correct include paths to the library target.
-rw-r--r--src/core/CMakeLists.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 31152abd5..3cdb2b817 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -374,10 +374,7 @@ set(HEADERS
374 telemetry_session.h 374 telemetry_session.h
375 ) 375 )
376 376
377include_directories(../../externals/dynarmic/include)
378
379create_directory_groups(${SRCS} ${HEADERS}) 377create_directory_groups(${SRCS} ${HEADERS})
380
381add_library(core STATIC ${SRCS} ${HEADERS}) 378add_library(core STATIC ${SRCS} ${HEADERS})
382target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) 379target_link_libraries(core PUBLIC common PRIVATE audio_core video_core)
383target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic) 380target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic)