X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=CMakeLists.txt;h=b11c77cfe0293f6002d4837e1df9d860b351d492;hb=51f387425fa52c4a92ebf01c9dde3156580f8d40;hp=b098f7a5cebd7f702b6c0392b2edf4a34320e390;hpb=38eec70e80acde7adfc59e3eae666c848a437abd;p=FrontAlgorithms.git diff --git a/CMakeLists.txt b/CMakeLists.txt index b098f7a..b11c77c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,8 @@ +## ========================================================================= +## @author Leonardo Florez Valencia +## @email florez-l@javeriana.edu.co +## ========================================================================= + cmake_minimum_required(VERSION 3.0) ## ======================== @@ -91,7 +96,15 @@ mark_as_advanced( ## == Find needed packages and dependencies == ## =========================================== -find_package(ivq CONFIG REQUIRED) +find_package(ITK CONFIG REQUIRED) +include(${ITK_USE_FILE}) +if(ITKVtkGlue_LOADED) + find_package(VTK CONFIG REQUIRED) + include(${VTK_USE_FILE}) +endif(ITKVtkGlue_LOADED) + +find_package(Eigen3 CONFIG REQUIRED) +include(${EIGEN3_USE_FILE}) ## ========================= ## == Installation values ==