https://github.com/Kitware/CMake
Revision 9858381ba8ed8a332169e2d0b3a2ce54fdd51712 authored by Brad King on 16 September 2021, 12:20:09 UTC, committed by Kitware Robot on 16 September 2021, 12:20:30 UTC
8f52451682 Use new SetOption signatures
8d0ae460de cmCTestGenericHandler::SetOption accepts cmProp or std::string

Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !6525
2 parent s 98f78af + 8f52451
Raw File
Tip revision: 9858381ba8ed8a332169e2d0b3a2ce54fdd51712 authored by Brad King on 16 September 2021, 12:20:09 UTC
Merge topic 'enh-CTest-SetOption-accepts-new-types'
Tip revision: 9858381
FindGCCXML.cmake
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

#[=======================================================================[.rst:
FindGCCXML
----------

Find the GCC-XML front-end executable.



This module will define the following variables:

::

  GCCXML - the GCC-XML front-end executable.
#]=======================================================================]

find_program(GCCXML
  NAMES gccxml
        ../GCC_XML/gccxml
  PATHS [HKEY_CURRENT_USER\\Software\\Kitware\\GCC_XML;loc]
  "$ENV{ProgramFiles}/GCC_XML"
  "C:/Program Files/GCC_XML"
)

mark_as_advanced(GCCXML)
back to top