Warning, /kdevelop/kdev-krazy2/cmake/FindKrazy2.cmake is written in an unsupported language. File is not indexed.

0001 # Find the krazy2 executable
0002 #
0003 # Defines the following variables
0004 #  Krazy2_EXECUTABLE - path of the krazy2 executable
0005 
0006 #=============================================================================
0007 # Copyright 2017 Friedrich W. H. Kossebau <kossebau@kde.org>
0008 #
0009 # Distributed under the OSI-approved BSD License (the "License");
0010 # see accompanying file Copyright.txt for details.
0011 #
0012 # This software is distributed WITHOUT ANY WARRANTY; without even the
0013 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
0014 # See the License for more information.
0015 #=============================================================================
0016 
0017 find_program(Krazy2_EXECUTABLE NAMES krazy2)
0018 
0019 include(FindPackageHandleStandardArgs)
0020 find_package_handle_standard_args(Krazy2 DEFAULT_MSG Cppcheck_EXECUTABLE)
0021 
0022 mark_as_advanced(Krazy2_EXECUTABLE)