~ubuntu-branches/ubuntu/oneiric/strigi/oneiric

« back to all changes in this revision

Viewing changes to src/archivereader/qclient/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2011-09-20 08:50:25 UTC
  • mto: (1.1.20 upstream) (5.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: package-import@ubuntu.com-20110920085025-wszfu6x8rshrjq0e
ImportĀ upstreamĀ versionĀ 0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include(${QT_USE_FILE})
2
 
 
3
 
include_directories( ../../streams )
4
 
 
5
 
# qclient
6
 
set(qclient_SRCS
7
 
        archiveenginehandler.cpp
8
 
        filebrowser.cpp
9
 
        filehandler.cpp
10
 
        fsfileinputstream.cpp
11
 
)
12
 
set(qclient_MOC_HDRS filebrowser.h)
13
 
qt4_wrap_cpp(qclient_MOC_SRCS ${qclient_MOC_HDRS})
14
 
add_executable(qclient ${qclient_SRCS} ${qclient_MOC_SRCS})
15
 
target_link_libraries(qclient streams
16
 
    ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY})
17