]> Creatis software - FrontAlgorithms.git/blob - cmake/fpaConfig.cmake.in
...
[FrontAlgorithms.git] / cmake / fpaConfig.cmake.in
1 ## =========================================================================
2 ## @author Leonardo Florez Valencia
3 ## @email florez-l@javeriana.edu.co
4 ## =========================================================================
5
6 @PACKAGE_INIT@
7
8 include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake")
9 check_required_components("@PROJECT_NAME@")
10
11 ## ===========================================
12 ## == Find needed packages and dependencies ==
13 ## ===========================================
14
15 set(ITK_DIR @ITK_DIR@)
16 find_package(ITK CONFIG REQUIRED)
17 include(${ITK_USE_FILE})
18 if(ITKVtkGlue_LOADED)
19   set(VTK_DIR @VTK_DIR@)
20   find_package(VTK CONFIG REQUIRED)
21   include(${VTK_USE_FILE})
22 endif(ITKVtkGlue_LOADED)
23
24 ## eof - $RCSfile$