10 lines
279 B
CMake
10 lines
279 B
CMake
radiant_plugin(archivezip
|
|
archive.cpp archive.h
|
|
pkzip.h
|
|
plugin.cpp
|
|
zlibstream.h
|
|
)
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
target_include_directories(archivezip PRIVATE ${ZLIB_INCLUDE_DIRS})
|
|
target_link_libraries(archivezip PRIVATE ${ZLIB_LIBRARIES})
|