From 55de0746dc24cb5c04653c3429230999c310b88e Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 4 Mar 2015 12:03:38 +0000 Subject: [PATCH] Copy all plugin files to bin dir (including symbols) #4168 --- src/lib/plugin/ns/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/plugin/ns/CMakeLists.txt b/src/lib/plugin/ns/CMakeLists.txt index 8a9baab4..81a6da44 100644 --- a/src/lib/plugin/ns/CMakeLists.txt +++ b/src/lib/plugin/ns/CMakeLists.txt @@ -62,21 +62,21 @@ if (WIN32) TARGET ns POST_BUILD COMMAND xcopy /Y /Q - ..\\..\\..\\..\\..\\lib\\${CMAKE_CFG_INTDIR}\\ns.dll + ..\\..\\..\\..\\..\\lib\\${CMAKE_CFG_INTDIR}\\ns.* ..\\..\\..\\..\\..\\bin\\${CMAKE_CFG_INTDIR}\\plugins\\ ) add_custom_command( TARGET ns POST_BUILD COMMAND xcopy /Y /Q - ..\\..\\..\\..\\..\\ext\\openssl\\out32dll\\libeay32.dll + ..\\..\\..\\..\\..\\ext\\openssl\\out32dll\\libeay32.* ..\\..\\..\\..\\..\\bin\\${CMAKE_CFG_INTDIR} ) add_custom_command( TARGET ns POST_BUILD COMMAND xcopy /Y /Q - ..\\..\\..\\..\\..\\ext\\openssl\\out32dll\\ssleay32.dll + ..\\..\\..\\..\\..\\ext\\openssl\\out32dll\\ssleay32.* ..\\..\\..\\..\\..\\bin\\${CMAKE_CFG_INTDIR} ) else() @@ -89,7 +89,7 @@ else() ${CMAKE_SOURCE_DIR}/bin/plugins && cp - ${CMAKE_SOURCE_DIR}/lib/${CMAKE_CFG_INTDIR}/libns.dylib + ${CMAKE_SOURCE_DIR}/lib/${CMAKE_CFG_INTDIR}/libns.* ${CMAKE_SOURCE_DIR}/bin/plugins/ ) else() @@ -101,7 +101,7 @@ else() ${CMAKE_SOURCE_DIR}/bin/plugins && cp - ${CMAKE_SOURCE_DIR}/lib/debug/libns.so + ${CMAKE_SOURCE_DIR}/lib/debug/libns.* ${CMAKE_SOURCE_DIR}/bin/plugins/ ) else() @@ -112,7 +112,7 @@ else() ${CMAKE_SOURCE_DIR}/bin/plugins && cp - ${CMAKE_SOURCE_DIR}/lib/libns.so + ${CMAKE_SOURCE_DIR}/lib/libns.* ${CMAKE_SOURCE_DIR}/bin/plugins/ ) endif()