From e7d72c1b2cd8dd9d3229de0e23cf6e1cd1c262a5 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Thu, 21 Jun 2018 23:15:07 -0500 Subject: [PATCH] add all of the library dependencies that Slic3r needs to the test as well. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index fea83f0a6..aa0bf6cf8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -339,7 +339,7 @@ if (SLIC3R_BUILD_TESTS) endif() add_executable(slic3r_test ${SLIC3R_TEST_SOURCES}) add_test(NAME TestSlic3r COMMAND slic3r_test) - target_link_libraries(slic3r_test PUBLIC libslic3r Catch) + target_link_libraries(slic3r_test PUBLIC libslic3r Catch admesh BSpline clipper expat polypartition poly2tri ZipArchive ${Boost_LIBRARIES}) endif()