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

« back to all changes in this revision

Viewing changes to akregator/export/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} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
2
 
 
3
 
set(akregatorstorageexporter_SRCS 
4
 
    akregatorstorageexporter.cpp
 
1
include_directories(
 
2
  ${CMAKE_SOURCE_DIR}/akregator/interfaces
 
3
  ${CMAKE_SOURCE_DIR}
 
4
  ${KDE4_INCLUDE_DIR}
 
5
  ${QT_INCLUDES}
 
6
  ${CMAKE_CURRENT_SOURCE_DIR}
 
7
  ${CMAKE_CURRENT_BINARY_DIR}
5
8
)
6
9
 
 
10
set(akregatorstorageexporter_SRCS akregatorstorageexporter.cpp)
 
11
 
7
12
kde4_add_executable(akregatorstorageexporter NOGUI ${akregatorstorageexporter_SRCS})
8
13
 
9
14
target_link_libraries(akregatorstorageexporter
10
 
                      ${KDE4_KDECORE_LIBS}
11
 
                      ${KDEPIMLIBS_SYNDICATION_LIBS}
12
 
                      akregatorinterfaces)
 
15
  ${KDE4_KDECORE_LIBS}
 
16
  ${KDEPIMLIBS_SYNDICATION_LIBS}
 
17
  akregatorinterfaces
 
18
)
13
19
 
14
20
install(TARGETS akregatorstorageexporter ${INSTALL_TARGETS_DEFAULT_ARGS})
15
21