1# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2# file Copyright.txt or https://cmake.org/licensing for details.
3
4#[=======================================================================[.rst:
5FindGCCXML
6----------
7
8Find the GCC-XML front-end executable.
9
10
11
12This module will define the following variables:
13
14::
15
16  GCCXML - the GCC-XML front-end executable.
17#]=======================================================================]
18
19find_program(GCCXML
20  NAMES gccxml
21        ../GCC_XML/gccxml
22  PATHS [HKEY_CURRENT_USER\\Software\\Kitware\\GCC_XML;loc]
23  "$ENV{ProgramFiles}/GCC_XML"
24  "C:/Program Files/GCC_XML"
25)
26
27mark_as_advanced(GCCXML)
28