Description: Fix cmake missing path to ITKConfig
    the newer cmake version (>=3.1), has removed the FindITK.cmake file 
    (insight toolkit library cmake configuration file) from its configuration
    database. This patc just add a PATHS directive to the find_package in 
    order to tell cmake where to look for the ITKConfig.cmake 
Author: Emmanuel Promayon <Emmanuel.Promayon@imag.fr>
Last-Update: 2015-06-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/sdk/cmake/modules/macros/CamiTKExtension.cmake
+++ b/sdk/cmake/modules/macros/CamiTKExtension.cmake
@@ -202,7 +202,7 @@
         # Looking for ITK
         set(ITK_LIBRARIES "")
         if(${EXTENSION_NAME_CMAKE}_NEEDS_ITK)
-            find_package(ITK REQUIRED)
+            find_package(ITK REQUIRED PATHS /usr/lib/InsightToolkit)
             if(ITK_FOUND)
                 include(${ITK_USE_FILE})
                 set(ITK_VERSION ${ITK_VERSION_MAJOR}.${ITK_VERSION_MINOR}.${ITK_VERSION_PATCH}) #ITK_VERSION is not always set
