2009-03-10 23:07:37 +00:00
|
|
|
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
|
2013-10-12 04:24:04 +00:00
|
|
|
make_release_only()
|
|
|
|
|
2013-06-23 16:37:13 +00:00
|
|
|
if( "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" )
|
2011-06-12 19:17:21 +00:00
|
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fomit-frame-pointer" )
|
2013-06-23 16:37:13 +00:00
|
|
|
endif( "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" )
|
2009-03-10 23:07:37 +00:00
|
|
|
|
|
|
|
add_definitions( -DBZ_NO_STDIO )
|
2009-05-25 20:58:59 +00:00
|
|
|
add_library( bz2
|
2009-03-10 23:07:37 +00:00
|
|
|
blocksort.c
|
|
|
|
bzlib.c
|
|
|
|
compress.c
|
|
|
|
crctable.c
|
|
|
|
decompress.c
|
|
|
|
huffman.c
|
|
|
|
randtable.c )
|
2009-05-25 20:58:59 +00:00
|
|
|
target_link_libraries( bz2 )
|