diff options
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r-- | externals/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 4a4ba1101..8f42f4fdc 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -31,6 +31,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) @@ -44,6 +49,10 @@ add_subdirectory(soundtouch) # The SoundTouch target doesn't export the necessary include paths as properties by default target_include_directories(SoundTouch INTERFACE ./soundtouch/include) +# Unicorn +add_library(unicorn-headers INTERFACE) +target_include_directories(unicorn-headers INTERFACE ./unicorn/include) + # Xbyak if (ARCHITECTURE_x86_64) # Defined before "dynarmic" above |