Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2018-07-16 17:37:14 +0300
committertamasmeszaros <meszaros.q@gmail.com>2018-07-16 17:37:14 +0300
commit266ff2ad937e7d2914ce04af85b08671f7c5bc60 (patch)
tree4191d87e27ec00313562917d353c1c40cf66e4bb
parent67d69830e820d9707355ab8b3ae8322f909d09e6 (diff)
Build fix for linux
-rw-r--r--xs/src/libnest2d/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/xs/src/libnest2d/CMakeLists.txt b/xs/src/libnest2d/CMakeLists.txt
index e16733cdd..db4f5d99f 100644
--- a/xs/src/libnest2d/CMakeLists.txt
+++ b/xs/src/libnest2d/CMakeLists.txt
@@ -81,7 +81,9 @@ if(LIBNEST2D_OPTIMIZER_BACKEND STREQUAL "nlopt")
${CMAKE_CURRENT_SOURCE_DIR}/libnest2d/optimizers/subplex.hpp
${CMAKE_CURRENT_SOURCE_DIR}/libnest2d/optimizers/genetic.hpp
${CMAKE_CURRENT_SOURCE_DIR}/libnest2d/optimizers/nlopt_boilerplate.hpp)
- list(APPEND LIBNEST2D_LIBRARIES ${NLopt_LIBS} Threads::Threads)
+ list(APPEND LIBNEST2D_LIBRARIES ${NLopt_LIBS}
+ # Threads::Threads
+ )
list(APPEND LIBNEST2D_HEADERS ${NLopt_INCLUDE_DIR})
endif()