Warning, /frameworks/kdelibs4support/cmake/modules/FindKDevPlatform.cmake is written in an unsupported language. File is not indexed.

0001 #
0002 # Find the KDevelop Platform modules and sets various variables accordingly
0003 #
0004 # Example usage of this module:
0005 # find_package(KDevPlatform 1.0.0 REQUIRED)
0006 # 
0007 # The version number and REQUIRED flag are optional. You can set CMAKE_PREFIX_PATH
0008 # variable to help it find the required files and directories
0009 
0010 # KDEVPLATFORM_FOUND                   - set to TRUE if the platform was found and the version is compatible FALSE otherwise
0011 #
0012 # KDEVPLATFORM_VERSION                 - The version number of kdevplatform
0013 # KDEVPLATFORM_VERSION_MAJOR           - The major version number of kdevplatform
0014 # KDEVPLATFORM_VERSION_MINOR           - The minor version number of kdevplatform
0015 # KDEVPLATFORM_VERSION_PATCH           - The patch version number of kdevplatform
0016 # KDEVPLATFORM_INCLUDE_DIR             - include dir of the platform, for example /usr/include/kdevplatform
0017 # KDEVPLATFORM_INTERFACES_LIBRARIES      - interfaces module library
0018 # KDEVPLATFORM_LANGUAGE_LIBRARIES        - language module library
0019 # KDEVPLATFORM_OUTPUTVIEW_LIBRARIES      - outputview module library
0020 # KDEVPLATFORM_PROJECT_LIBRARIES         - project module library
0021 # KDEVPLATFORM_SUBLIME_LIBRARIES         - sublime module library
0022 # KDEVPLATFORM_SHELL_LIBRARIES           - shell module library
0023 # KDEVPLATFORM_TESTS_LIBRARIES           - library to write tests for plugins,
0024 #                                        contains some useful tools and a way to replace parts of Core 
0025 #                                        classes with custom implementations
0026 # KDEVPLATFORM_UTIL_LIBRARIES            - util module library
0027 # KDEVPLATFORM_VCS_LIBRARIES             - vcs module library
0028 # KDEVPLATFORM_DEBUGGER_LIBRARIES        - debugger module library
0029 #
0030 # The following macros are added (from KDevPlatformMacros.cmake):
0031 #
0032 #  KDEVPLATFORM_ADD_APP_TEMPLATES( template1 ... templateN )
0033 #    Use this to get packaged template archives for the given templates.
0034 #    Parameters should be the directories containing the templates.
0035 #
0036 # Copyright 2007 Andreas Pakulat <apaku@gmx.de>
0037 # Redistribution and use is allowed according to the terms of the BSD license.
0038 
0039 set(_KDevPlatform_FIND_QUIETLY ${KDevPlatform_FIND_QUIETLY})
0040 find_package( KDevPlatform ${KDevPlatform_FIND_VERSION} NO_MODULE )
0041 set(KDevPlatform_FIND_QUIETLY ${_KDevPlatform_FIND_QUIETLY})
0042 
0043 include(FindPackageHandleStandardArgs)
0044 find_package_handle_standard_args(KDevPlatform DEFAULT_MSG KDevPlatform_CONFIG )
0045