summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-27 22:19:37 -0700
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-27 22:19:37 -0700
commit3b68600f81078c5cc56f8697746d9ea5a4281d76 (patch)
treeedb451023b0929608770d605bd849cabdb1ecef9 /src
parent4f84372bc20bbdc7a14e6d49edd1fda498a3ec54 (diff)
CMake: Remove unnecessary include_directories for dynarmic
Dynarmic already adds the correct include paths to the library target.
Diffstat (limited to 'src')
-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
telemetry_session.h
)
-include_directories(../../externals/dynarmic/include)
-
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 PUBLIC Boost::boost PRIVATE cryptopp dynarmic)