mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
ba618d308c
3.1.0 is the highest minimum set in the existing subprojects so this will not exclude anything that hadn't been already.
14 lines
255 B
CMake
14 lines
255 B
CMake
cmake_minimum_required( VERSION 3.1.0 )
|
|
|
|
make_release_only()
|
|
|
|
add_definitions( -DBZ_NO_STDIO )
|
|
add_library( bz2 STATIC
|
|
blocksort.c
|
|
bzlib.c
|
|
compress.c
|
|
crctable.c
|
|
decompress.c
|
|
huffman.c
|
|
randtable.c )
|
|
target_link_libraries( bz2 )
|