gzdoom/tools/zipdir/CMakeLists.txt

10 lines
314 B
Text
Raw Normal View History

cmake_minimum_required( VERSION 3.16 )
if( NOT CMAKE_CROSSCOMPILING )
2023-09-17 11:48:39 +00:00
include_directories( SYSTEM "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" )
add_executable( zipdir
zipdir.c )
2023-09-17 11:48:39 +00:00
target_link_libraries( zipdir miniz ${BZIP2_LIBRARIES} lzma )
set( CROSS_EXPORTS ${CROSS_EXPORTS} zipdir PARENT_SCOPE )
endif()