Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / KDevPlatformConfig.cmake.in
blob7f03bcf731349f3bbeb2df3a9c865b6110ec3474
1 #########################################################################
3 # KDevPlatform Configuration File 
5 # This file sets various CMake Variables
7 # KDevPlatform_INCLUDE_DIR             - The Include Directory for all KDevPlatform libraries
8 # KDevPlatform_INTERFACES_LIBRARY      - the interfaces library
9 # KDevPlatform_LANGUAGE_LIBRARY        - the language library
10 # KDevPlatform_OUTPUTVIEW_LIBRARY      - the outputview library
11 # KDevPlatform_PROJECT_LIBRARY         - the project library
12 # KDevPlatform_SUBLIME_LIBRARY         - the sublime library
13 # KDevPlatform_SHELL_LIBRARY           - the shell library
14 # KDevPlatform_UTIL_LIBRARY            - the util library
15 # KDevPlatform_VCS_LIBRARY             - the vcs library
16 # KDevPlatform_VERITAS                 - the veritas library
17 # KDevPlatform_SOURCEFORMATTER_LIBRARY - the sourceformatter library
19 # Copyright 2008  Andreas Pakulat <apaku@gmx.de>
20 # Redistribution and use is allowed according to the terms of the BSD license.
21 ######################################################################
23 set( KDevPlatform_INCLUDE_DIR "@INCLUDE_INSTALL_DIR@/kdevplatform" )
25 # Change PATHS to HINTS as soon as cmake 2.6.2 is required for KDE
26 find_library( KDevPlatform_INTERFACES_LIBRARY kdevplatforminterfaces 
27         PATHS "@LIB_INSTALL_DIR@" 
28         DOC "KDevPlatform interfaces library" )
30 find_library( KDevPlatform_UTIL_LIBRARY kdevplatformutil 
31         PATHS "@LIB_INSTALL_DIR@" 
32         DOC "KDevPlatform util library" )
34 find_library( KDevPlatform_LANGUAGE_LIBRARY kdevplatformlanguage 
35         PATHS "@LIB_INSTALL_DIR@" 
36         DOC "KDevPlatform language library" )
38 find_library( KDevPlatform_OUTPUTVIEW_LIBRARY kdevplatformoutputview 
39         PATHS "@LIB_INSTALL_DIR@" 
40         DOC "KDevPlatform outputview library" )
42 find_library( KDevPlatform_PROJECT_LIBRARY kdevplatformproject 
43         PATHS "@LIB_INSTALL_DIR@" 
44         DOC "KDevPlatform project library" )
46 find_library( KDevPlatform_SUBLIME_LIBRARY sublime 
47         PATHS "@LIB_INSTALL_DIR@" 
48         DOC "KDevPlatform sublime library" )
50 find_library( KDevPlatform_SHELL_LIBRARY kdevplatformshell 
51         PATHS "@LIB_INSTALL_DIR@" 
52         DOC "KDevPlatform shell library" )
54 find_library( KDevPlatform_VCS_LIBRARY kdevplatformvcs 
55         PATHS "@LIB_INSTALL_DIR@" 
56         DOC "KDevPlatform vcs library" )
58 find_library( KDevPlatform_VERITAS_LIBRARY kdevplatformveritas 
59         PATHS "@LIB_INSTALL_DIR@" 
60         DOC "KDevPlatform veritas library" )
62 find_library( KDevPlatform_SOURCEFORMATTER_LIBRARY kdevplatformsourceformatter 
63         PATHS "@LIB_INSTALL_DIR@" 
64         DOC "KDevPlatform sourceformatter library" )
66 mark_as_advanced(
67     KDevPlatform_INTERFACES_LIBRARY
68     KDevPlatform_LANGUAGE_LIBRARY
69     KDevPlatform_OUTPUTVIEW_LIBRARY
70     KDevPlatform_PROJECT_LIBRARY
71     KDevPlatform_SUBLIME_LIBRARY
72     KDevPlatform_SHELL_LIBRARY
73     KDevPlatform_UTIL_LIBRARY
74     KDevPlatform_VCS_LIBRARY
75     KDevPlatform_VERITAS_LIBRARY
76     KDevPlatform_SOURCEFORMATTER_LIBRARY