~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/plugins/custom-definesandincludes/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Lisandro Damián Nicanor Pérez Meyer, Pino Toscano, Sune Vuorela, Lisandro Damián Nicanor Pérez Meyer
  • Date: 2015-09-02 21:10:24 UTC
  • mfrom: (1.3.24)
  • Revision ID: package-import@ubuntu.com-20150902211024-ntruxcyb574f3xuk
Tags: 4:4.7.1-1
* Team upload.

[ Pino Toscano ]
* Change section of kdevelop-dev to libdevel.
* Add ${misc:Depends} in kdevelop-dbg and kdevelop-l10n.

[ Sune Vuorela ]
* Make KDevelop recommend kapptemplate to have more meaningful project
  templates available.

[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
  - Bump kdevplatform-dev build dependency to 1.7.1.
* Remove kde-workspace from build dependencies. We no longer provide
  a KDE 4 based workspace.
  - Add libsoprano-dev as a build dependency, it was probably previously
    pulled in by kde-workspace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
add_subdirectory(tests)
3
3
add_subdirectory(compilerprovider)
4
4
 
5
 
include_directories( ${KDE4_INCLUDES} ${KDEVPLATFORM_INCLUDE_DIR} )
6
 
 
7
 
add_definitions( ${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
8
 
 
9
5
set( kdevdefinesandincludesmanager_SRCS
10
6
        definesandincludesmanager.cpp
11
7
        debugarea.cpp
12
8
    )
13
 
kde4_add_library(kdev4includesdefinessettings SHARED settingsmanager.cpp compilerprovider/icompiler.cpp)
14
 
target_link_libraries( kdev4includesdefinessettings LINK_PRIVATE
15
 
        ${KDEVPLATFORM_PROJECT_LIBRARIES}
16
 
        ${KDEVPLATFORM_UTIL_LIBRARIES} )
17
9
 
18
10
kde4_add_plugin( kdevdefinesandincludesmanager
19
11
        ${kdevdefinesandincludesmanager_SRCS})
21
13
        ${KDEVPLATFORM_PROJECT_LIBRARIES}
22
14
        ${KDEVPLATFORM_UTIL_LIBRARIES}
23
15
        ${KDEVPLATFORM_LANGUAGE_LIBRARIES}
24
 
        kdev4includesdefinessettings )
 
16
        kdevcompilerprovider )
25
17
 
26
18
install( TARGETS kdevdefinesandincludesmanager
27
19
         DESTINATION ${PLUGIN_INSTALL_DIR} )
28
 
install( TARGETS kdev4includesdefinessettings ${INSTALL_TARGETS_DEFAULT_ARGS} )
29
20
 
30
21
configure_file(kdevdefinesandincludesmanager.desktop.cmake ${CMAKE_CURRENT_BINARY_DIR}/kdevdefinesandincludesmanager.desktop)
31
22
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kdevdefinesandincludesmanager.desktop DESTINATION ${SERVICES_INSTALL_DIR} )