1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 10:53:31 +08:00

Add CompressSave, with Chinese instructions in READMEs

This commit is contained in:
2022-09-14 17:34:15 +08:00
parent 8117ee7659
commit c49378412e
37 changed files with 11924 additions and 94 deletions

View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.2)
project(LZ4Wrap)
add_library(LZ4 SHARED
lz4/lz4.c lz4/lz4.h
lz4/lz4frame.c lz4/lz4frame.h lz4/lz4frame_static.h
lz4/lz4hc.c lz4/lz4hc.h
lz4/xxhash.c lz4/xxhash.h
dllmain.c LZ4Wrap.c LZ4Wrap.h)
target_compile_definitions(LZ4 PRIVATE LZ4WRAP_EXPORTS)
target_include_directories(LZ4 PRIVATE lz4)
if(WIN32)
set_target_properties(LZ4 PROPERTIES PREFIX "")
endif()