mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-11-20 08:10:11 +00:00
15 lines
158 B
CMake
15 lines
158 B
CMake
project(patchlib C)
|
|
|
|
set(SRCS
|
|
blocksort.c
|
|
huffman.c
|
|
crctable.c
|
|
randtable.c
|
|
compress.c
|
|
decompress.c
|
|
bzlib.c
|
|
bspatch.c
|
|
)
|
|
|
|
add_library(patchlib STATIC ${SRCS})
|