2016-09-27 22:01:08 +03: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 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindGCCXML
|
|
|
|
# ----------
|
|
|
|
#
|
|
|
|
# Find the GCC-XML front-end executable.
|
|
|
|
#
|
|
|
|
#
|
2010-04-17 14:11:55 +04:00
|
|
|
#
|
|
|
|
# This module will define the following variables:
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# GCCXML - the GCC-XML front-end executable.
|
2009-09-28 19:45:50 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_program(GCCXML
|
2001-10-24 17:41:17 +04:00
|
|
|
NAMES gccxml
|
|
|
|
../GCC_XML/gccxml
|
2002-04-17 22:51:58 +04:00
|
|
|
PATHS [HKEY_CURRENT_USER\\Software\\Kitware\\GCC_XML;loc]
|
2006-02-28 18:27:30 +03:00
|
|
|
"$ENV{ProgramFiles}/GCC_XML"
|
|
|
|
"C:/Program Files/GCC_XML"
|
2001-10-24 17:41:17 +04:00
|
|
|
)
|
2010-04-17 14:07:07 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(GCCXML)
|