fixed copy command for libns on Linux #4168
This commit is contained in:
parent
31440b1a8a
commit
7d5df54bd0
|
@ -79,15 +79,28 @@ else()
|
||||||
${CMAKE_SOURCE_DIR}/bin/plugins/
|
${CMAKE_SOURCE_DIR}/bin/plugins/
|
||||||
)
|
)
|
||||||
else()
|
else()
|
||||||
add_custom_command(
|
if (CMAKE_BUILD_TYPE STREQUAL Debug)
|
||||||
TARGET ns
|
add_custom_command(
|
||||||
POST_BUILD
|
TARGET ns
|
||||||
COMMAND mkdir -p
|
POST_BUILD
|
||||||
${CMAKE_SOURCE_DIR}/bin/plugins
|
COMMAND mkdir -p
|
||||||
&&
|
${CMAKE_SOURCE_DIR}/bin/plugins
|
||||||
cp
|
&&
|
||||||
${CMAKE_SOURCE_DIR}/lib/libns.so
|
cp
|
||||||
${CMAKE_SOURCE_DIR}/bin/plugins/
|
${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()
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue