Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2020-02-05 20:22:17 +0300
committertamasmeszaros <meszaros.q@gmail.com>2020-02-05 20:22:17 +0300
commit2d86e3cc4d5c28275af33d106b8eaffefbad4cf2 (patch)
tree771648904d3145853ab03e61781b8f617b920144 /tests
parentd58f451d5db72925503153aed4ef906ea612b91b (diff)
fix failing test due to missing cgal dlls
Diffstat (limited to 'tests')
-rw-r--r--tests/libslic3r/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/libslic3r/CMakeLists.txt b/tests/libslic3r/CMakeLists.txt
index 97d9b0bc7..d8dac3c10 100644
--- a/tests/libslic3r/CMakeLists.txt
+++ b/tests/libslic3r/CMakeLists.txt
@@ -22,5 +22,9 @@ endif()
target_link_libraries(${_TEST_NAME}_tests test_common libslic3r)
set_property(TARGET ${_TEST_NAME}_tests PROPERTY FOLDER "tests")
+if (WIN32)
+ prusaslicer_copy_dlls(${_TEST_NAME}_tests)
+endif()
+
# catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ")
add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests ${CATCH_EXTRA_ARGS})