2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindDart
|
|
|
|
# --------
|
2001-06-14 00:15:27 +04:00
|
|
|
#
|
2013-10-15 19:17:36 +04: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.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(DART_ROOT README.INSTALL
|
2012-03-29 02:00:54 +04:00
|
|
|
HINTS
|
|
|
|
ENV DART_ROOT
|
|
|
|
PATHS
|
2012-03-29 02:51:06 +04:00
|
|
|
${PROJECT_SOURCE_DIR}
|
|
|
|
/usr/share
|
|
|
|
C:/
|
|
|
|
"C:/Program Files"
|
|
|
|
${PROJECT_SOURCE_DIR}/..
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Dart\\InstallPath]
|
|
|
|
ENV ProgramFiles
|
|
|
|
PATH_SUFFIXES
|
|
|
|
Dart
|
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
|
|
|
|
2010-04-17 14:51:13 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set DART_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-17 14:51:13 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Dart DEFAULT_MSG DART_ROOT)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(DART_ROOT)
|