mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Rename cli instead of lib for VS conflicts to prevent linker error. #778
This commit is contained in:
parent
1ddb23dfc0
commit
b887f8104b
@ -697,10 +697,6 @@ set_target_properties(${MINIZIP_TARGET} PROPERTIES
|
||||
if(MINIZIP_LFG)
|
||||
set_target_properties(${MINIZIP_TARGET} PROPERTIES LINK_FLAGS ${MINIZIP_LFG})
|
||||
endif()
|
||||
if(MSVC)
|
||||
# VS debugger has problems when executable and static library are named the same
|
||||
set_target_properties(${MINIZIP_TARGET} PROPERTIES OUTPUT_NAME lib${MINIZIP_TARGET})
|
||||
endif()
|
||||
if(MZ_LZMA)
|
||||
set_target_properties(${MINIZIP_TARGET} PROPERTIES C_STANDARD 99)
|
||||
endif()
|
||||
@ -777,7 +773,14 @@ if(MZ_BUILD_TESTS)
|
||||
endif()
|
||||
|
||||
add_executable(minizip_cli minizip.c)
|
||||
set_target_properties(minizip_cli PROPERTIES OUTPUT_NAME ${MINIZIP_TARGET})
|
||||
|
||||
if(MSVC AND MZ_COMPAT AND CMAKE_BUILD_TYPE MATCHES "Debug|RelWithDebInfo")
|
||||
# VS debugger has problems when executable and static library are named the same
|
||||
set_target_properties(minizip_cli PROPERTIES OUTPUT_NAME minizip_cli)
|
||||
else()
|
||||
set_target_properties(minizip_cli PROPERTIES OUTPUT_NAME minizip)
|
||||
endif()
|
||||
|
||||
target_compile_definitions(minizip_cli PRIVATE ${STDLIB_DEF} ${MINIZIP_DEF})
|
||||
target_include_directories(minizip_cli PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
target_link_libraries(minizip_cli ${MINIZIP_TARGET})
|
||||
|
Loading…
x
Reference in New Issue
Block a user