~ubuntu-branches/ubuntu/raring/recorditnow/raring

« back to all changes in this revision

Viewing changes to joschy-snapshot-23-02-10/Provider/Blip/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-09 14:54:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110109145401-gyckb4airz4fio50
Tags: 0.8.1-0ubuntu1
* New upstream release. (LP: #681270)
  - Update debian/copyright.
* Build-depend on recordmydesktop.
* Add a watch file.
* Drop 01_fix_ftbfs_kwarning_call.diff, fixed upstream.
* Add 01_joschy_install_to_usr_lib.diff.
* Add 02_fix_ftbfs_no-add-needed.diff.
* Add 03_dont_install_header_files.diff.
* Replace dependency on libpolkit-qt-1-0 with policykit-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(${CMAKE_SOURCE_DIR}
 
2
                    ${CMAKE_CURRENT_BINARY_DIR}
 
3
                    ${CMAKE_BINARY_DIR}
 
4
                    ${QT_INCLUDE_DIR}
 
5
                    ${JOSCHYCORE_INCLUDE_DIR})
 
6
 
 
7
 
 
8
set(QT_USE_QTXML true)
 
9
set(QT_DONT_USE_QTGUI true)
 
10
include(${QT_USE_FILE})
 
11
 
 
12
 
 
13
set(SRCS
 
14
    blipprovider.cpp
 
15
    responseparser.cpp)
 
16
 
 
17
 
 
18
QT4_AUTOMOC(${SRCS})
 
19
add_library(joschyblip SHARED ${SRCS})
 
20
target_link_libraries(joschyblip ${QT_LIBRARIES} ${JOSCHYCORE_LIBRARIES})
 
21
INSTALL(TARGETS joschyblip DESTINATION ${JOSCHYCORE_PLUGIN_INSTALL_DIR})
 
22
INSTALL(FILES blipprovider.plugin joschycore-blip.png DESTINATION ${JOSCHYCORE_PLUGIN_INSTALL_DIR})
 
23
 
 
24