blob: ef59ed5bf8033cbec85b88fd6d50947efa47980d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
add_library(tng_io SHARED tng_io.c md5.c)
if(HAVE_INTTYPES_H)
set_property(TARGET tng_io APPEND PROPERTY COMPILE_DEFINITIONS USE_STD_INTTYPES_H)
endif()
if(BUILD_FORTRAN)
set_property(TARGET tng_io APPEND PROPERTY COMPILE_DEFINITIONS BUILD_FORTRAN)
endif()
if(ZLIB_FOUND)
set_property(TARGET tng_io APPEND PROPERTY COMPILE_DEFINITIONS USE_ZLIB)
target_link_libraries(tng_io tng_compress ${ZLIB_LIBRARIES})
else()
target_link_libraries(tng_io tng_compress)
endif()
|