Remove all xcopy commands in cmake

This commit is contained in:
XinyuHou
2016-12-19 16:07:51 +00:00
committed by Andrew Nelless
parent e0b4561e55
commit 0d8bc9d7e2
5 changed files with 0 additions and 51 deletions

View File

@@ -34,23 +34,6 @@ endif()
add_library(net STATIC ${sources})
if (WIN32)
add_custom_command(
TARGET net
POST_BUILD
COMMAND xcopy /Y /Q
..\\..\\..\\..\\..\\synergy\\ext\\${OPENSSL_PLAT_DIR}\\out32dll\\libeay32.*
..\\..\\..\\..\\..\\bin\\${CMAKE_CFG_INTDIR}\\
)
add_custom_command(
TARGET net
POST_BUILD
COMMAND xcopy /Y /Q
..\\..\\..\\..\\..\\synergy\\ext\\${OPENSSL_PLAT_DIR}\\out32dll\\ssleay32.*
..\\..\\..\\..\\..\\bin\\${CMAKE_CFG_INTDIR}\\
)
endif()
if (UNIX)
target_link_libraries(net mt io ${OPENSSL_LIBS})
endif()