From 298ab4df7f1aacc2fc5dc6d4d5c969129420ca7c Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 21 May 2019 15:33:23 -0500 Subject: [PATCH] Use generic qhull include location Currently the qhull includes are referenced absolutely, but the compiler is always called with the src directory in the include path and so it should be safe to specify a more generic path. --- src/libslic3r/TriangleMesh.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/TriangleMesh.cpp b/src/libslic3r/TriangleMesh.cpp index 20c9a9cf937..4d35cabca2e 100644 --- a/src/libslic3r/TriangleMesh.cpp +++ b/src/libslic3r/TriangleMesh.cpp @@ -2,9 +2,9 @@ #include "ClipperUtils.hpp" #include "Geometry.hpp" #include "Tesselate.hpp" -#include "qhull/src/libqhullcpp/Qhull.h" -#include "qhull/src/libqhullcpp/QhullFacetList.h" -#include "qhull/src/libqhullcpp/QhullVertexSet.h" +#include +#include +#include #include #include #include