2013-10-15 15:17:36 +00:00
|
|
|
#.rst:
|
|
|
|
# FindDart
|
|
|
|
# --------
|
2001-06-13 20:15:27 +00:00
|
|
|
#
|
2013-10-15 15:17:36 +00: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 20:15:27 +00:00
|
|
|
|
2009-09-28 15:45:50 +00: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 00:48:47 +00:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 15:45:50 +00:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
find_path(DART_ROOT README.INSTALL
|
2012-03-28 22:00:54 +00:00
|
|
|
HINTS
|
|
|
|
ENV DART_ROOT
|
|
|
|
PATHS
|
2012-03-28 22:51:06 +00: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 16:52:27 +00:00
|
|
|
DOC "If you have Dart installed, where is it located?"
|
2001-06-13 20:15:27 +00:00
|
|
|
)
|
2010-04-17 10:47:20 +00:00
|
|
|
|
2010-04-17 10:51:13 +00:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set DART_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2012-08-13 17:47:32 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-17 10:51:13 +00:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Dart DEFAULT_MSG DART_ROOT)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
mark_as_advanced(DART_ROOT)
|