https://github.com/Kitware/CMake
Revision 676ed21c66b7e4297f655110e2164ff22916127c authored by Bill Hoffman on 30 October 2006, 14:17:00 UTC, committed by Bill Hoffman on 30 October 2006, 14:17:00 UTC
1 parent bf29553
Raw File
Tip revision: 676ed21c66b7e4297f655110e2164ff22916127c authored by Bill Hoffman on 30 October 2006, 14:17:00 UTC
ENH: move from main tree
Tip revision: 676ed21
FindDart.cmake
# - Find DART
# This module looks for the dart testing software and sets DART_ROOT
# to point to where it found it.
#

FIND_PATH(DART_ROOT README.INSTALL 
    $ENV{DART_ROOT}
    ${PROJECT_SOURCE_DIR}/Dart 
     /usr/share/Dart 
    C:/Dart  
    "$ENV{ProgramFiles}/Dart"
    "C:/Program Files/Dart" 
    ${PROJECT_SOURCE_DIR}/../Dart 
    [HKEY_LOCAL_MACHINE\\SOFTWARE\\Dart\\InstallPath]
    DOC "If you have Dart installed, where is it located?"
    )
back to top