1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 03:33:29 +08:00
Files
DSP_Mods/CompressSave/ZstdWrapC/CMakeLists.txt
2022-11-20 16:36:02 +08:00

13 lines
314 B
CMake

cmake_minimum_required(VERSION 3.2)
project(zstdwrap)
add_library(LZ4 SHARED
dllmain.c zstdwrap.c zstdwrap.h)
target_compile_definitions(zstdwrap PRIVATE ZSTDWRAP_EXPORTS ZSTDLIB_STATIC_API)
target_link_libraries(zstdwrap PRIVATE zstd)
if(WIN32)
set_target_properties(zstdwrap PROPERTIES PREFIX "")
endif()