Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / sublime / CMakeLists.txt
blob46c7a61bd330108eeeb8267de428bf40484e09ed
1 add_definitions( -DKDE_DEFAULT_DEBUG_AREA=9504 )
2 add_subdirectory(examples)
3 add_subdirectory(tests)
5 ########### next target ###############
7 set(sublime_LIB_SRCS
8     area.cpp
9     areaindex.cpp
10     container.cpp
11     controller.cpp
12     document.cpp
13     mainwindow.cpp
14     mainwindow_p.cpp
15     mainwindowoperator.cpp
16     urldocument.cpp
17     switcher.cpp
18     tooldocument.cpp
19     view.cpp
20     sublimedefs.cpp
21     aggregatemodel.cpp
22     ideal.cpp
23     ideallayout.cpp
24     containerstyle.cpp
27 kde4_add_library(sublime SHARED ${sublime_LIB_SRCS})
28 target_link_libraries(sublime ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS})
29 set_target_properties(sublime PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${KDEVPLATFORM_LIB_SOVERSION})
30 install(TARGETS sublime ${INSTALL_TARGETS_DEFAULT_ARGS} )
33 ########### install files ###############
35 install(FILES
36     area.h
37     areaindex.h
38     areawalkers.h
39     container.h
40     controller.h
41     document.h
42     mainwindow.h
43     mainwindowoperator.h
44     urldocument.h
45     sublimedefs.h
46     sublimeexport.h
47     switcher.h
48     tooldocument.h
49     view.h
50     DESTINATION ${INCLUDE_INSTALL_DIR}/kdevplatform/sublime )