commit 3a42cc9a581ad826be59e1c3a3b5426e301614dc
parent 0b4da95742d665e738b97b96cfeb3ae6298cb393
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 1 Jun 2016 11:47:27 +0200
On Windows, copy the test runtimes in the build directory
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -49,7 +49,6 @@ include_directories(
set(CMAKE_MODULE_PATH ${RCMAKE_SOURCE_DIR})
include(rcmake)
include(rcmake_runtime)
-rcmake_append_runtime_dirs(_runtime_dirs RSys Star3D StarSTL)
################################################################################
# Define targets
@@ -82,8 +81,7 @@ if(NOT NO_TEST)
add_executable(test_s3dstl ${S3DSTL_SOURCE_DIR}/test_s3dstl.c)
target_link_libraries(test_s3dstl s3dstl)
add_test(test_s3dstl test_s3dstl)
-
- rcmake_set_test_runtime_dirs(test_s3dstl _runtime_dirs)
+ rcmake_copy_runtime_libraries(test_s3dstl)
endif(NOT NO_TEST)
################################################################################