mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
7 lines
120 B
CMake
7 lines
120 B
CMake
set(HEADERS)
|
|
set(CPPS unzip.cpp)
|
|
|
|
add_library(unzip STATIC ${HEADERS} ${CPPS})
|
|
|
|
target_link_libraries(unzip ZLIB::ZLIB)
|