~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to akregator/plugins/mk4storage/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include_directories( ${CMAKE_SOURCE_DIR}/akregator/interfaces ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/akregator/plugins/mk4storage/metakit/include ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_BINARY_DIR}/akregator ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${Boost_INCLUDE_DIR} )
 
1
include_directories(
 
2
  ${CMAKE_CURRENT_SOURCE_DIR}
 
3
  ${CMAKE_CURRENT_BINARY_DIR}
 
4
  ${CMAKE_SOURCE_DIR}
 
5
  ${CMAKE_SOURCE_DIR}/akregator/interfaces
 
6
  ${CMAKE_SOURCE_DIR}/akregator/plugins/mk4storage/metakit/include
 
7
  ${CMAKE_BINARY_DIR}/akregator
 
8
  ${KDE4_INCLUDE_DIR}
 
9
  ${QT_INCLUDES}
 
10
  ${Boost_INCLUDE_DIR}
 
11
)
2
12
 
3
 
set(libmetakitlocal_SRCS 
4
 
                metakit/src/column.cpp 
5
 
                metakit/src/custom.cpp
6
 
                metakit/src/derived.cpp
7
 
                metakit/src/field.cpp
8
 
                metakit/src/fileio.cpp
9
 
                metakit/src/format.cpp
10
 
                metakit/src/handler.cpp
11
 
                metakit/src/persist.cpp
12
 
                metakit/src/remap.cpp
13
 
                metakit/src/std.cpp
14
 
                metakit/src/store.cpp
15
 
                metakit/src/string.cpp
16
 
                metakit/src/table.cpp
17
 
                metakit/src/univ.cpp
18
 
                metakit/src/view.cpp
19
 
                metakit/src/viewx.cpp
20
 
                )
 
13
set(libmetakitlocal_SRCS
 
14
  metakit/src/column.cpp
 
15
  metakit/src/custom.cpp
 
16
  metakit/src/derived.cpp
 
17
  metakit/src/field.cpp
 
18
  metakit/src/fileio.cpp
 
19
  metakit/src/format.cpp
 
20
  metakit/src/handler.cpp
 
21
  metakit/src/persist.cpp
 
22
  metakit/src/remap.cpp
 
23
  metakit/src/std.cpp
 
24
  metakit/src/store.cpp
 
25
  metakit/src/string.cpp
 
26
  metakit/src/table.cpp
 
27
  metakit/src/univ.cpp
 
28
  metakit/src/view.cpp
 
29
  metakit/src/viewx.cpp
 
30
)
21
31
 
22
32
########### next target ###############
23
33
 
24
 
set(akregator_mk4storage_plugin_PART_SRCS ${libmetakitlocal_SRCS}
25
 
   feedstoragemk4impl.cpp 
26
 
   storagemk4impl.cpp 
27
 
   storagefactorymk4impl.cpp 
28
 
   mk4plugin.cpp )
29
 
 
 
34
set(akregator_mk4storage_plugin_PART_SRCS
 
35
  ${libmetakitlocal_SRCS}
 
36
  feedstoragemk4impl.cpp
 
37
  storagemk4impl.cpp
 
38
  storagefactorymk4impl.cpp
 
39
  mk4plugin.cpp
 
40
)
30
41
 
31
42
kde4_add_plugin(akregator_mk4storage_plugin ${akregator_mk4storage_plugin_PART_SRCS})
32
43
 
33
 
target_link_libraries(akregator_mk4storage_plugin  ${KDE4_KDECORE_LIBS} ${KDEPIMLIBS_SYNDICATION_LIBS} akregatorinterfaces )
 
44
target_link_libraries(akregator_mk4storage_plugin
 
45
  ${KDE4_KDECORE_LIBS}
 
46
  ${KDEPIMLIBS_SYNDICATION_LIBS}
 
47
  akregatorinterfaces
 
48
)
34
49
 
35
 
install(TARGETS akregator_mk4storage_plugin  DESTINATION ${PLUGIN_INSTALL_DIR})
 
50
install(TARGETS akregator_mk4storage_plugin DESTINATION ${PLUGIN_INSTALL_DIR})
36
51
 
37
52
########### install files ###############
38
53
 
39
 
install( FILES akregator_mk4storage_plugin.desktop  DESTINATION ${SERVICES_INSTALL_DIR})
 
54
install(FILES akregator_mk4storage_plugin.desktop DESTINATION ${SERVICES_INSTALL_DIR})