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>2019-06-26 14:23:08 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-06-26 14:23:08 +0300
commit7e52edb88c411339a0203df3049029f4394b8d7d (patch)
tree8c0bc31e797310280870bc3ef29997be9d36f1dd /src/libigl
parentd2136ab6253ced47b6ccca2a9256fb265083d734 (diff)
Try to supress warnings from bundled IGL under Windows.
Diffstat (limited to 'src/libigl')
-rw-r--r--src/libigl/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libigl/CMakeLists.txt b/src/libigl/CMakeLists.txt
index 0852fad72..3daac757b 100644
--- a/src/libigl/CMakeLists.txt
+++ b/src/libigl/CMakeLists.txt
@@ -10,5 +10,5 @@ if(libigl_FOUND)
target_link_libraries(libigl INTERFACE igl::core)
else()
message(STATUS "IGL NOT found, using bundled version...")
- target_include_directories(libigl INTERFACE SYSTEM ${LIBDIR}/libigl)
+ target_include_directories(libigl SYSTEM BEFORE INTERFACE ${LIBDIR}/libigl)
endif()