mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
FYI CMake documents: https://cmake.org/cmake/help/v3.0/command/if.html Signed-off-by: peter-tank <30540412+peter-tank@users.noreply.github.com>
This commit is contained in:
parent
9727843b70
commit
0c45001d33
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 (DEFINED CMAKE_STRIP)
|
if (COMMAND 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(DEFINED CMAKE_STRIP)
|
endif(COMMAND CMAKE_STRIP)
|
||||||
|
|
||||||
install(TARGETS minisign DESTINATION bin)
|
install(TARGETS minisign DESTINATION bin)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue