diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-04 17:01:02 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-04 17:01:02 -0500 |
commit | dcfbad212937f8f6ffc824bc24538df32f16a13b (patch) | |
tree | 2968491e556b8c4007d8d92953ae6b7df63001c2 /src | |
parent | 24f10a20e7270e97ef45043088fa53612cad955a (diff) |
cmake: Don't compile Dynarmic as it's unused.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index f3ed33cfb..d35f974ca 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -158,7 +158,7 @@ set(HEADERS create_directory_groups(${SRCS} ${HEADERS}) add_library(core STATIC ${SRCS} ${HEADERS}) target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core) -target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt lz4_static unicorn) +target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp fmt lz4_static unicorn) if (ENABLE_WEB_SERVICE) target_link_libraries(core PUBLIC json-headers web_service) endif() |