2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# FindGCCXML
|
|
|
|
# ----------
|
|
|
|
#
|
|
|
|
# Find the GCC-XML front-end executable.
|
|
|
|
#
|
|
|
|
#
|
2010-04-17 12:11:55 +02:00
|
|
|
#
|
|
|
|
# This module will define the following variables:
|
2013-10-15 11:17:36 -04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# GCCXML - the GCC-XML front-end executable.
|
2009-09-28 11:45:50 -04:00
|
|
|
|
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)
|