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
path: root/src
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2019-06-06 17:24:00 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-06-06 17:24:00 +0300
commit113c6b2ebaa9ceea86ecc056ad47d4a3bab02864 (patch)
treeafe6e3e96341680ffca9513dc69d5e4532cc4d48 /src
parent5d054d90edf00588187deaaec9419d97e4708bf1 (diff)
Fix static linking to Qhull
Diffstat (limited to 'src')
-rw-r--r--src/qhull/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qhull/CMakeLists.txt b/src/qhull/CMakeLists.txt
index 734bb8295..9ca0bdff2 100644
--- a/src/qhull/CMakeLists.txt
+++ b/src/qhull/CMakeLists.txt
@@ -17,7 +17,7 @@ add_library(qhull INTERFACE)
if(Qhull_FOUND)
message(STATUS "Using qhull from system.")
-if(SLICER_STATIC)
+if(SLIC3R_STATIC)
target_link_libraries(qhull INTERFACE Qhull::qhullcpp Qhull::qhullstatic_r)
else()
target_link_libraries(qhull INTERFACE Qhull::qhullcpp Qhull::qhull_r)