2005-12-14 21:51:08 +03:00
|
|
|
# - Find DART
|
|
|
|
# This module looks for the dart testing software and sets DART_ROOT
|
|
|
|
# to point to where it found it.
|
2001-06-14 00:15:27 +04:00
|
|
|
#
|
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2001-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2001-06-14 00:15:27 +04:00
|
|
|
FIND_PATH(DART_ROOT README.INSTALL
|
2001-08-18 20:52:19 +04:00
|
|
|
$ENV{DART_ROOT}
|
2001-06-14 00:15:27 +04:00
|
|
|
${PROJECT_SOURCE_DIR}/Dart
|
|
|
|
/usr/share/Dart
|
2006-02-28 18:27:30 +03:00
|
|
|
C:/Dart
|
|
|
|
"$ENV{ProgramFiles}/Dart"
|
2001-06-14 00:15:27 +04:00
|
|
|
"C:/Program Files/Dart"
|
2001-08-15 21:23:01 +04:00
|
|
|
${PROJECT_SOURCE_DIR}/../Dart
|
2001-07-17 17:54:05 +04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Dart\\InstallPath]
|
2001-12-06 19:52:27 +03:00
|
|
|
DOC "If you have Dart installed, where is it located?"
|
2001-06-14 00:15:27 +04:00
|
|
|
)
|