From ef028cd8b1e6d1b8fd950742f4cfcdf2a838a1b7 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 20c9a9cf9..4d35cabca 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