Merge topic 'cpack-innosetup-linux'
[kiteware-cmake.git] / Modules / FindGCCXML.cmake
blobe6c7f2434d958cea34cf1a15300f420269218a8f
1 # Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2 # file Copyright.txt or https://cmake.org/licensing for details.
4 #[=======================================================================[.rst:
5 FindGCCXML
6 ----------
8 Find the GCC-XML front-end executable.
12 This module will define the following variables:
16   GCCXML - the GCC-XML front-end executable.
17 #]=======================================================================]
19 find_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"
27 mark_as_advanced(GCCXML)