fixed copy command for libns on Linux #4168

This commit is contained in:
XinyuHou 2015-02-10 13:07:52 +00:00
parent 31440b1a8a
commit 7d5df54bd0
1 changed files with 23 additions and 10 deletions

View File

@ -78,6 +78,18 @@ else()
${CMAKE_SOURCE_DIR}/lib/${CMAKE_CFG_INTDIR}/libns.dylib
${CMAKE_SOURCE_DIR}/bin/plugins/
)
else()
if (CMAKE_BUILD_TYPE STREQUAL Debug)
add_custom_command(
TARGET ns
POST_BUILD
COMMAND mkdir -p
${CMAKE_SOURCE_DIR}/bin/plugins
&&
cp
${CMAKE_SOURCE_DIR}/lib/debug/libns.so
${CMAKE_SOURCE_DIR}/bin/plugins/
)
else()
add_custom_command(
TARGET ns
@ -91,3 +103,4 @@ else()
)
endif()
endif()
endif()