mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-05 20:46:06 +08:00

first SLA Z correction prototype Change Z correction controlling parameter to integer layer count Add z correction mm conversion text as description label under Z correction Fixed a crash when switching pages in material tab
21 lines
813 B
CMake
21 lines
813 B
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_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})
|