2005-12-14 13:51:08 -05:00
|
|
|
# - Find DART
|
|
|
|
# This module looks for the dart testing software and sets DART_ROOT
|
|
|
|
# to point to where it found it.
|
2001-06-13 16:15:27 -04:00
|
|
|
#
|
|
|
|
|
2009-09-28 11: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-13 16:15:27 -04:00
|
|
|
FIND_PATH(DART_ROOT README.INSTALL
|
2001-08-18 12:52:19 -04:00
|
|
|
$ENV{DART_ROOT}
|
2001-06-13 16:15:27 -04:00
|
|
|
${PROJECT_SOURCE_DIR}/Dart
|
|
|
|
/usr/share/Dart
|
2006-02-28 10:27:30 -05:00
|
|
|
C:/Dart
|
|
|
|
"$ENV{ProgramFiles}/Dart"
|
2001-06-13 16:15:27 -04:00
|
|
|
"C:/Program Files/Dart"
|
2001-08-15 13:23:01 -04:00
|
|
|
${PROJECT_SOURCE_DIR}/../Dart
|
2001-07-17 09:54:05 -04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Dart\\InstallPath]
|
2001-12-06 11:52:27 -05:00
|
|
|
DOC "If you have Dart installed, where is it located?"
|
2001-06-13 16:15:27 -04:00
|
|
|
)
|
2010-04-17 12:47:20 +02:00
|
|
|
|
2010-04-17 12:51:13 +02:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set DART_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
|
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Dart DEFAULT_MSG DART_ROOT)
|
|
|
|
|
2010-04-17 12:47:20 +02:00
|
|
|
MARK_AS_ADVANCED(DART_ROOT)
|