From 1cbc1895ea143cdb3fd062a22f7995e20d0e7b90 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Thu, 12 Jul 2018 17:02:12 -0500 Subject: [PATCH] Fix a typo in CMakeLists, point at correct path for test_options.hpp.in --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f21fe3132..f7042697c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -381,7 +381,7 @@ if (SLIC3R_BUILD_TESTS) target_compile_definitions(Catch INTERFACE $<$:_SILENCE_CXX17_UNCAUGHT_EXCEPTION_DEPRECATION_WARNING>) endif() include_directories(${LIBDIR}/test) - configure_file("${LIBDIR}/test/test_options.hpp.in" "${LIBDIR}/test/test_options.hpp") + configure_file("${TESTDIR}/test_options.hpp.in" "${TESTDIR}/test_options.hpp") add_executable(slic3r_test ${SLIC3R_TEST_SOURCES}) add_test(NAME TestSlic3r COMMAND slic3r_test) @@ -390,4 +390,4 @@ endif() if (BUILD_EXTRUDE_TIN) target_link_libraries (extrude-tin libslic3r ${LIBSLIC3R_DEPENDS}) -endif( +endif()