mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-09-10 01:13:14 +08:00
32 lines
1.2 KiB
CMake
32 lines
1.2 KiB
CMake
get_filename_component(_TEST_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
|
|
add_executable(${_TEST_NAME}_tests ${_TEST_NAME}_tests_main.cpp
|
|
sla_print_tests.cpp
|
|
sla_test_utils.hpp sla_test_utils.cpp
|
|
sla_supptgen_tests.cpp
|
|
sla_raycast_tests.cpp
|
|
sla_parabola_tests.cpp
|
|
sla_voronoi_graph_tests.cpp
|
|
sla_vectorUtils_tests.cpp
|
|
sla_lineUtils_tests.cpp
|
|
sla_supptreeutils_tests.cpp
|
|
sla_archive_readwrite_tests.cpp
|
|
sla_zcorrection_tests.cpp)
|
|
|
|
# mold linker for successful linking needs also to link TBB library and link it before libslic3r.
|
|
target_link_libraries(${_TEST_NAME}_tests test_common TBB::tbb TBB::tbbmalloc 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})
|
|
|
|
if (WIN32)
|
|
# Adds a post-build copy of libgmp-10.dll
|
|
add_custom_command(TARGET ${_TEST_NAME}_tests POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
"${CMAKE_PREFIX_PATH}/bin/libgmp-10.dll"
|
|
$<TARGET_FILE_DIR:${_TEST_NAME}_tests>)
|
|
endif() |