You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

  1. #
  2. # Find the native ITK includes and library
  3. #
  4. # This module defines
  5. #
  6. # ITK_BINARY_PATH - where is the binary tree (only defined if SOURCE_PATH is defined)
  7. # USE_ITK_FILE - the full path and location of the UseITK.cmake file
  8. #
  9. #
  10. # Look for a binary tree
  11. #
  12. FIND_PATH(ITK_BINARY_PATH UseITK.cmake
  13. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild1]
  14. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild2]
  15. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild3]
  16. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild4]
  17. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild5]
  18. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild6]
  19. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild7]
  20. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild8]
  21. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild9]
  22. [HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\Settings\\StartPath;WhereBuild10]
  23. ../ITKBIN
  24. ../itkbin
  25. ../Insight-vc
  26. ../InsightBin
  27. ITKBIN
  28. itkbin
  29. $ENV{HOME}/ITKBIN
  30. $ENV{HOME}/Insight
  31. $ENV{HOME}/InsightBin
  32. $ENV{HOME}/itkbin
  33. )
  34. IF (ITK_BINARY_PATH)
  35. SET (USE_ITK_FILE ${ITK_BINARY_PATH}/UseITK.cmake)
  36. ENDIF (ITK_BINARY_PATH)