2005-12-14 13:51:08 -05:00
|
|
|
# - Find the GCC-XML front-end executable.
|
2010-04-17 12:11:55 +02:00
|
|
|
#
|
|
|
|
# This module will define the following variables:
|
|
|
|
# GCCXML - the GCC-XML front-end executable.
|
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.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:45:50 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(GCCXML
|
2001-10-24 09:41:17 -04:00
|
|
|
NAMES gccxml
|
|
|
|
../GCC_XML/gccxml
|
2002-04-17 14:51:58 -04:00
|
|
|
PATHS [HKEY_CURRENT_USER\\Software\\Kitware\\GCC_XML;loc]
|
2006-02-28 10:27:30 -05:00
|
|
|
"$ENV{ProgramFiles}/GCC_XML"
|
|
|
|
"C:/Program Files/GCC_XML"
|
2001-10-24 09:41:17 -04:00
|
|
|
)
|
2010-04-17 12:07:07 +02:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(GCCXML)
|