CMake/Modules/FindDart.cmake

32 lines
1.1 KiB
CMake
Raw Normal View History

# - 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
#
#=============================================================================
# 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
$ENV{DART_ROOT}
2001-06-14 00:15:27 +04:00
${PROJECT_SOURCE_DIR}/Dart
/usr/share/Dart
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
[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
)
2010-04-17 14:47:20 +04:00
MARK_AS_ADVANCED(DART_ROOT)