~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skrooge_operation/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-07-28 15:38:43 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728153843-91b74m0vcam50krt
Tags: 0.2.9-0ubuntu1
* New upstream release
* Added kubuntu_01_cmake_fix.patch:
  Fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
PROJECT(plugin_operation)
4
4
 
5
 
FIND_PACKAGE(KDE4 REQUIRED)
6
 
INCLUDE (KDE4Defaults)
7
5
 
8
 
INCLUDE_DIRECTORIES( ${PROJECT_BINARY_DIR} ${KDE4_INCLUDES} ${QT_INCLUDES} 
9
 
${CMAKE_SOURCE_DIR}/skgbankmodeler ${CMAKE_SOURCE_DIR}/skgbasemodeler ${CMAKE_SOURCE_DIR}/skgbankgui ${CMAKE_SOURCE_DIR}/skgbasegui 
 
6
INCLUDE_DIRECTORIES( ${PROJECT_BINARY_DIR} ${KDE4_INCLUDES} ${QT_INCLUDES}
 
7
${CMAKE_SOURCE_DIR}/skgbankmodeler ${CMAKE_SOURCE_DIR}/skgbasemodeler ${CMAKE_SOURCE_DIR}/skgbankgui ${CMAKE_SOURCE_DIR}/skgbasegui
10
8
${CMAKE_BINARY_DIR}/skgbasegui
11
9
)
12
10
 
13
11
LINK_DIRECTORIES (${LIBRARY_OUTPUT_PATH})
14
12
 
15
 
SET(skrooge_operation_SRCS 
16
 
        skgsplittabledelegate.cpp 
17
 
        skgoperationplugin.cpp 
18
 
        skgoperationpluginwidget.cpp)
19
 
 
20
 
QT4_AUTOMOC(${skrooge_operation_SRCS})
21
 
 
22
 
kde4_add_ui_files(skrooge_operation_SRCS skgoperationpluginwidget_base.ui skgoperationpluginwidget_pref.ui)
 
13
SET(skrooge_operation_SRCS
 
14
        skgsplittabledelegate.cpp
 
15
        skgoperationplugin.cpp
 
16
        skgoperationpluginwidget.cpp
 
17
        skgoperationboardwidget.cpp
 
18
)
 
19
 
 
20
kde4_add_ui_files(skrooge_operation_SRCS skgoperationpluginwidget_base.ui skgoperationpluginwidget_pref.ui skgoperationpluginwidget_board.ui)
23
21
kde4_add_kcfg_files(skrooge_operation_SRCS skrooge_operation.kcfgc )
24
22
 
25
23
kde4_add_plugin(skrooge_operation ${skrooge_operation_SRCS})