~ubuntu-branches/ubuntu/karmic/choqok/karmic

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi, Alessandro Ghersi, Christian Mangold
  • Date: 2009-08-11 22:29:59 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090811222959-7tnr98ptcnyx3pjg
Tags: 0.6.6-0ubuntu1
[Alessandro Ghersi]
* New upstream release
  - Bump Standards-Version to 3.8.2
  - Long description formatted to fit in 80 characters

[Christian Mangold]
* Improve long description
* Update Maintainer, package is in main now
* Add a watch file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(choqok_SRCS
2
 
   search.cpp
3
 
   twittersearch.cpp
4
 
   identicasearch.cpp
5
 
   accounts.cpp
6
 
   accountswizard.cpp
7
 
   mainwindow.cpp
8
 
   main.cpp
9
 
   statuswidget.cpp
10
 
   backend.cpp
11
 
   statustextedit.cpp
12
 
   mediamanager.cpp
13
 
   systrayicon.cpp
14
 
   quicktwit.cpp
15
 
   timelinewidget.cpp
16
 
   searchwindow.cpp
17
 
   accountmanager.cpp
18
 
   account.cpp
19
 
   userinfowidget.cpp
20
 
 )
21
 
 
22
 
kde4_add_ui_files(choqok_SRCS timelinewidget_base.ui prefs_base.ui accounts_base.ui 
23
 
accounts_wizard_base.ui appears_base.ui quicktwit_base.ui searchwidget_base.ui)
24
 
 
25
 
kde4_add_kcfg_files(choqok_SRCS settings.kcfgc )
26
 
 
27
 
kde4_add_app_icon(choqok_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/../icons/hi*-app-choqok.png")
28
 
 
29
 
kde4_add_executable(choqok ${choqok_SRCS})
30
 
 
31
 
target_link_libraries(choqok ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} ${KDE4_KUTILS_LIBS})
32
 
 
33
 
install(TARGETS choqok ${INSTALL_TARGETS_DEFAULT_ARGS})
34
 
 
35
 
########### install files ###############
36
 
 
37
 
install( FILES choqok.desktop  DESTINATION ${XDG_APPS_INSTALL_DIR} )
38
 
install( FILES choqok.kcfg  DESTINATION  ${KCFG_INSTALL_DIR} )
39
 
install( FILES choqokui.rc choqok.notifyrc  DESTINATION  ${DATA_INSTALL_DIR}/choqok )