mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Seems to be a more common way to test for CMAKE_STRIP
This commit is contained in:
parent
0c45001d33
commit
dfb9963ce7
1 changed files with 2 additions and 2 deletions
|
@ -80,10 +80,10 @@ if(CMAKE_THREAD_LIBS_INIT)
|
||||||
target_link_libraries(minisign "${CMAKE_THREAD_LIBS_INIT}")
|
target_link_libraries(minisign "${CMAKE_THREAD_LIBS_INIT}")
|
||||||
endif(CMAKE_THREAD_LIBS_INIT)
|
endif(CMAKE_THREAD_LIBS_INIT)
|
||||||
|
|
||||||
if (COMMAND CMAKE_STRIP)
|
if (NOT MSVC AND CMAKE_STRIP)
|
||||||
add_custom_command(TARGET minisign POST_BUILD
|
add_custom_command(TARGET minisign POST_BUILD
|
||||||
COMMAND ${CMAKE_STRIP} ${STRIP_FLAGS} $<TARGET_FILE:minisign>)
|
COMMAND ${CMAKE_STRIP} ${STRIP_FLAGS} $<TARGET_FILE:minisign>)
|
||||||
endif(COMMAND CMAKE_STRIP)
|
endif(NOT MSVC AND CMAKE_STRIP)
|
||||||
|
|
||||||
install(TARGETS minisign DESTINATION bin)
|
install(TARGETS minisign DESTINATION bin)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue