blob: 18cf32ff6f75fcbc364a9a1ef16169d79da3a354 (
plain)
1
2
3
4
5
6
7
8
9
10
|
add_library(tng_io SHARED tng_io.c md5.c)
if(HAVE_INTTYPES_H)
set_target_properties(tng_io PROPERTIES COMPILE_DEFINITIONS USE_STD_INTTYPES_H=1)
endif()
if(ZLIB_FOUND)
set_target_properties(tng_io PROPERTIES COMPILE_DEFINITIONS USE_ZLIB=1)
target_link_libraries(tng_io ${ZLIB_LIBRARIES})
endif()
|