mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 12:30:32 +00:00
e43453b614
SVN r1604 (trunk)
8 lines
355 B
CMake
8 lines
355 B
CMake
cmake_minimum_required( VERSION 2.4 )
|
|
message(STATUS "${ZLIB_INCLUDE_DIR}" )
|
|
message(STATUS "${BZIP2_INCLUDE_DIR}" )
|
|
message(STATUS "${LZMA_INCLUDE_DIR}" )
|
|
include_directories( "${ZLIB_INCLUDE_DIR}" "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" )
|
|
add_executable( zipdir
|
|
zipdir.c )
|
|
target_link_libraries( zipdir ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} lzma )
|