mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 04:52:11 +00:00
75b7db858f
- Added more output to zipdir and a -q option to turn it off. - Added -u option to zipdir to only recompress those files in a zip that have changed. - Added -d and -f options to zipdir. -d forces deflate compression, and -f forces a write of the zip, even if it's newer than all the files it contains. - Added support for bzip2 and LZMA compression to zipdir. SVN r1468 (trunk)
8 lines
342 B
CMake
8 lines
342 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 lzma )
|