1
0
mirror of https://github.com/soarqin/DSP_Mods_TO.git synced 2025-12-15 02:53:29 +08:00

Moved CompressSave here

This commit is contained in:
2023-12-20 15:54:17 +08:00
parent 0d6493edd2
commit 6f224902f8
46 changed files with 12915 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.2)
project(lz4wrap)
add_library(lz4wrap 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(lz4wrap PRIVATE LZ4WRAP_EXPORTS)
target_include_directories(lz4wrap PRIVATE lz4)
if(WIN32)
set_target_properties(lz4wrap PROPERTIES PREFIX "")
endif()