9 lines
85 B
CMake
9 lines
85 B
CMake
set(TARGET_NAME miniz)
|
|
|
|
add_library(
|
|
${TARGET_NAME}
|
|
STATIC
|
|
miniz.c
|
|
miniz.h
|
|
)
|