Fix output artifact name under Cygwin (GH #466)
parent
33d20af445
commit
67a24ec75a
|
|
@ -642,7 +642,7 @@ if (BUILD_TESTING)
|
||||||
target_link_libraries(cryptest cryptopp-static)
|
target_link_libraries(cryptest cryptopp-static)
|
||||||
|
|
||||||
# Setting "cryptest" binary name to "cryptest.exe"
|
# Setting "cryptest" binary name to "cryptest.exe"
|
||||||
if (NOT WIN32)
|
if (NOT (WIN32 OR CYGWIN))
|
||||||
set_target_properties(cryptest PROPERTIES OUTPUT_NAME cryptest.exe)
|
set_target_properties(cryptest PROPERTIES OUTPUT_NAME cryptest.exe)
|
||||||
endif ()
|
endif ()
|
||||||
if (NOT TARGET cryptest.exe)
|
if (NOT TARGET cryptest.exe)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue