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

« back to all changes in this revision

Viewing changes to joschy-snapshot-23-02-10/joschycore/joschycore/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
 
 
2
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} ${QT_INCLUDE_DIR})
 
3
 
 
4
set(SRCS
 
5
    manager.cpp
 
6
    plugin.cpp
 
7
    abstractnetworklayer.cpp
 
8
    abstractprovider.cpp
 
9
    video.cpp
 
10
    plugininfo.cpp
 
11
    pluginmanager.cpp
 
12
    postfile.cpp
 
13
    abstractresponseparser.cpp
 
14
    scheduler.cpp
 
15
    schedulerthread.cpp
 
16
    abstractjob.cpp
 
17
    config.cpp
 
18
    actionreply.cpp)
 
19
 
 
20
set(HEADERS 
 
21
    manager.h
 
22
    plugin.h
 
23
    abstractnetworklayer.h
 
24
    abstractprovider.h
 
25
    video.h
 
26
    joschy_global.h
 
27
    plugininfo.h
 
28
    postfile.h
 
29
    abstractresponseparser.h
 
30
    scheduler.h
 
31
    abstractjob.h
 
32
    joschy_version.h
 
33
    config.h
 
34
    actionreply.h)
 
35
 
 
36
 
 
37
 
 
38
QT4_AUTOMOC(${SRCS})
 
39
add_library(joschycore SHARED ${SRCS})
 
40
target_link_libraries(joschycore ${QT_LIBRARIES})
 
41
INSTALL(TARGETS joschycore DESTINATION ${JOSCHY_LIBRARY_INSTALL_DIR})
 
42
 
 
43
#add_subdirectory(qt)
 
44
#add_subdirectory(provider)