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

CMake: Rename examples and tests to avoid chain building confusion.

This commit is contained in:
Vollstrecker 2024-12-01 09:49:36 +01:00 committed by Mark Adler
parent 76c6a8601c
commit 6762467523

View File

@ -235,18 +235,18 @@ endif()
# Example binaries
#============================================================================
if(ZLIB_BUILD_EXAMPLES)
add_executable(example test/example.c)
target_link_libraries(example zlib)
add_test(example example)
add_executable(zlib_example test/example.c)
target_link_libraries(zlib_example zlib)
add_test(zlib_example zlib_example)
add_executable(minigzip test/minigzip.c)
target_link_libraries(minigzip zlib)
if(HAVE_OFF64_T)
add_executable(example64 test/example.c)
target_link_libraries(example64 zlib)
set_target_properties(example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
add_test(example64 example64)
add_executable(zlib_example64 test/example.c)
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_link_libraries(minigzip64 zlib)