mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
60c5dbf1fe
This can help with CMake IDE integration and file indexing.
12 lines
235 B
CMake
12 lines
235 B
CMake
set(HEADERS unzip.h)
|
|
set(CPPS unzip.cpp)
|
|
|
|
add_library(unzip STATIC ${HEADERS} ${CPPS})
|
|
|
|
target_link_libraries(unzip PRIVATE ZLIB::ZLIB)
|
|
target_include_directories(unzip PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/unzip
|
|
>
|
|
)
|