2005-12-14 21:51:08 +03:00
|
|
|
# - Find the GCC-XML front-end executable.
|
2010-04-17 14:11:55 +04:00
|
|
|
#
|
|
|
|
# This module will define the following variables:
|
|
|
|
# GCCXML - the GCC-XML front-end executable.
|
2009-09-28 19: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-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
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)
|