From 9eb4888df7fc7e02e364622878f332fc103ca919 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 24 Sep 2017 11:04:55 -0400 Subject: [PATCH] externals: Add lz4. --- externals/CMakeLists.txt | 5 +++++ externals/lz4 | 1 + src/core/CMakeLists.txt | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 160000 externals/lz4 diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 8e4bcf21f8..b809d76d85 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -28,6 +28,11 @@ add_subdirectory(glad) # inih add_subdirectory(inih) +# lz4 +set(LZ4_BUNDLED_MODE ON) +add_subdirectory(lz4/contrib/cmake_unofficial) +target_include_directories(lz4_static INTERFACE ./lz4/lib) + # MicroProfile add_library(microprofile INTERFACE) target_include_directories(microprofile INTERFACE ./microprofile) diff --git a/externals/lz4 b/externals/lz4 new file mode 160000 index 0000000000..c10863b98e --- /dev/null +++ b/externals/lz4 @@ -0,0 +1 @@ +Subproject commit c10863b98e1503af90616ae99725ecd120265dfb diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 360f407f3d..44d7f670b6 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -389,7 +389,7 @@ set(HEADERS 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 fmt) +target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt lz4_static) if (ENABLE_WEB_SERVICE) target_link_libraries(core PUBLIC json-headers web_service) endif()