2019-10-15 07:40:40 +00:00
|
|
|
get_filename_component(_TEST_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
|
|
|
|
add_executable(${_TEST_NAME}_tests
|
|
|
|
${_TEST_NAME}_tests.cpp
|
2019-10-16 11:20:09 +00:00
|
|
|
test_3mf.cpp
|
2019-10-25 11:34:37 +00:00
|
|
|
test_clipper_offset.cpp
|
2019-10-25 15:07:55 +00:00
|
|
|
test_clipper_utils.cpp
|
2019-10-18 09:53:19 +00:00
|
|
|
test_config.cpp
|
2019-11-01 18:59:09 +00:00
|
|
|
test_elephant_foot_compensation.cpp
|
2019-10-15 07:40:40 +00:00
|
|
|
test_geometry.cpp
|
2019-10-15 16:08:32 +00:00
|
|
|
test_polygon.cpp
|
2019-10-18 11:05:22 +00:00
|
|
|
test_stl.cpp
|
2019-10-15 07:40:40 +00:00
|
|
|
)
|
|
|
|
target_link_libraries(${_TEST_NAME}_tests test_common libslic3r)
|
|
|
|
set_property(TARGET ${_TEST_NAME}_tests PROPERTY FOLDER "tests")
|
|
|
|
|
|
|
|
# catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ")
|
2019-10-25 08:41:56 +00:00
|
|
|
add_test(${_TEST_NAME}_tests ${_TEST_NAME}_tests ${CATCH_EXTRA_ARGS})
|