mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Add lz4 submodule
This commit is contained in:
parent
da6339a722
commit
69ec239a1f
9 changed files with 79 additions and 0 deletions
13
Externals/lz4/CMakeLists.txt
vendored
Normal file
13
Externals/lz4/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.13)
|
||||
|
||||
# We only want the static library, nothing else.
|
||||
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
|
||||
set(LZ4_BUILD_CLI OFF)
|
||||
set(LZ4_BUILD_LEGACY_LZ4C OFF)
|
||||
set(LZ4_BUNDLED_MODE ON)
|
||||
|
||||
add_subdirectory(lz4/build/cmake)
|
||||
|
||||
dolphin_disable_warnings_msvc(lz4_static)
|
||||
add_library(LZ4::LZ4 ALIAS lz4_static)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue