Warning, /kdevelop/kdevelop/cmake/modules/Findheaptrack_gui.cmake is written in an unsupported language. File is not indexed.

0001 # Find the heaptrack_gui executable
0002 #
0003 # Defines the following variables
0004 #  heaptrack_gui_EXECUTABLE - path of the heaptrack_gui executable
0005 
0006 #=============================================================================
0007 # SPDX-FileCopyrightText: 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
0008 #
0009 # SPDX-License-Identifier: BSD-3-Clause
0010 #=============================================================================
0011 
0012 find_program(heaptrack_gui_EXECUTABLE NAMES heaptrack_gui)
0013 
0014 include(FindPackageHandleStandardArgs)
0015 find_package_handle_standard_args(heaptrack_gui DEFAULT_MSG heaptrack_gui_EXECUTABLE)
0016 
0017 mark_as_advanced(heaptrack_gui_EXECUTABLE)