2005-12-14 18:51:08 +00:00
|
|
|
# - Find the GCC-XML front-end executable.
|
2010-04-17 10:11:55 +00:00
|
|
|
#
|
|
|
|
# This module will define the following variables:
|
|
|
|
# GCCXML - the GCC-XML front-end executable.
|
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.)
|
|
|
|
|
2001-10-24 13:41:17 +00:00
|
|
|
FIND_PROGRAM(GCCXML
|
|
|
|
NAMES gccxml
|
|
|
|
../GCC_XML/gccxml
|
2002-04-17 18:51:58 +00:00
|
|
|
PATHS [HKEY_CURRENT_USER\\Software\\Kitware\\GCC_XML;loc]
|
2006-02-28 15:27:30 +00:00
|
|
|
"$ENV{ProgramFiles}/GCC_XML"
|
|
|
|
"C:/Program Files/GCC_XML"
|
2001-10-24 13:41:17 +00:00
|
|
|
)
|
2010-04-17 10:07:07 +00:00
|
|
|
|
|
|
|
MARK_AS_ADVANCED(GCCXML)
|