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

@ -79,15 +79,28 @@ else()
${CMAKE_SOURCE_DIR}/bin/plugins/
)
else()
add_custom_command(
TARGET ns
POST_BUILD
COMMAND mkdir -p
${CMAKE_SOURCE_DIR}/bin/plugins
&&
cp
${CMAKE_SOURCE_DIR}/lib/libns.so
${CMAKE_SOURCE_DIR}/bin/plugins/
)
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
POST_BUILD
COMMAND mkdir -p
${CMAKE_SOURCE_DIR}/bin/plugins
&&
cp
${CMAKE_SOURCE_DIR}/lib/libns.so
${CMAKE_SOURCE_DIR}/bin/plugins/
)
endif()
endif()
endif()