1
0
mirror of https://github.com/madler/zlib synced 2025-03-28 21:13:15 +00:00

CMake: Use the same definition we checked for off64_t.

Move to target_compile_definitions.
This commit is contained in:
Vollstrecker 2024-12-01 16:55:19 +01:00 committed by Mark Adler
parent 31d2462c1d
commit 899ef97c4a

View File

@ -216,12 +216,12 @@ if(ZLIB_BUILD_EXAMPLES)
if(HAVE_OFF64_T)
add_executable(zlib_example64 test/example.c)
target_compile_definitions(zlib_example64 PRIVATE LARGEFILE64_SOURCE=1)
target_link_libraries(zlib_example64 zlib)
set_target_properties(zlib_example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
add_test(zlib_example64 zlib_example64)
add_executable(minigzip64 test/minigzip.c)
target_compile_definitions(minigzip64 PRIVATE LARGEFILE64_SOURCE=1)
target_link_libraries(minigzip64 zlib)
set_target_properties(minigzip64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
endif()
endif()