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:
authorhexane360 <colin@gilgenbach.net>2019-01-08 03:30:47 +0300
committerhexane360 <colin@gilgenbach.net>2019-01-09 20:13:34 +0300
commitd681eef10e9e3b83b1f9cbc65bab705ceb15e77a (patch)
tree30b374449896d53dadac00f6096a4bcd2598baab /CMakeLists.txt
parentb96190dc2414b5460161d59c9903a07cd316ed74 (diff)
Added version check for Eigen (>=3.0)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6cc3b3a26..34edb3822 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -248,7 +248,7 @@ endif()
# Find eigen3 or use bundled version
if (NOT SLIC3R_STATIC)
- find_package(Eigen3)
+ find_package(Eigen3 3)
endif ()
if (NOT Eigen3_FOUND)
set(Eigen3_FOUND 1)