~ubuntu-branches/ubuntu/trusty/baloo/trusty-updates

« back to all changes in this revision

Viewing changes to .pc/upstream_git/0004-Improve-the-FileIndexingQueue-Test.patch/src/file/tests/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-04-10 21:32:59 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140410213259-b3hkzveqwe4hd3ax
Tags: 4:4.13.0-0ubuntu1
New upstream KDE Software Compilation release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include_directories(
2
 
  ${CMAKE_CURRENT_SOURCE_DIR}/..
3
 
)
4
 
 
5
 
kde4_add_executable(indexerconfigtest
6
 
                    indexerconfigtest.cpp
7
 
                    ../fileindexerconfig.cpp
8
 
                    ../regexpcache.cpp
9
 
                    ../fileexcludefilters.cpp)
10
 
 
11
 
target_link_libraries(indexerconfigtest
12
 
  ${QT_QTCORE_LIBRARY}
13
 
  ${KDE4_KDECORE_LIBS}
14
 
  ${KDE4_KDEUI_LIBS}
15
 
  baloocore
16
 
)
17
 
 
18
 
kde4_add_executable(basicindexingqueuetest
19
 
                    basicindexingqueuetest.cpp
20
 
                    ../fileindexerconfig.cpp
21
 
                    ../regexpcache.cpp
22
 
                    ../fileexcludefilters.cpp
23
 
                    ../basicindexingqueue.cpp
24
 
                    ../indexingqueue.cpp
25
 
                    ../basicindexingjob.cpp
26
 
                    ../database.cpp
27
 
                    ../lib/filemapping.cpp
28
 
                    ../commitqueue.cpp
29
 
)
30
 
 
31
 
target_link_libraries(basicindexingqueuetest
32
 
  ${QT_QTCORE_LIBRARY}
33
 
  ${QT_QTSQL_LIBRARY}
34
 
  ${KDE4_KDECORE_LIBS}
35
 
  ${KDE4_KIO_LIBS}
36
 
  ${XAPIAN_LIBRARIES}
37
 
  ${KFILEMETADATA_LIBRARY}
38
 
  baloocore
39
 
  balooxapian
40
 
)
41
 
 
42
 
kde4_add_executable(fileindexingqueuetest
43
 
                    fileindexingqueuetest.cpp
44
 
                    ../fileindexingjob.cpp
45
 
                    ../fileindexerconfig.cpp
46
 
                    ../regexpcache.cpp
47
 
                    ../fileexcludefilters.cpp
48
 
                    ../basicindexingqueue.cpp
49
 
                    ../indexingqueue.cpp
50
 
                    ../basicindexingjob.cpp
51
 
                    ../database.cpp
52
 
                    ../lib/filemapping.cpp
53
 
                    ../commitqueue.cpp
54
 
)
55
 
 
56
 
target_link_libraries(fileindexingqueuetest
57
 
  ${QT_QTCORE_LIBRARY}
58
 
  ${QT_QTSQL_LIBRARY}
59
 
  ${KDE4_KDECORE_LIBS}
60
 
  ${KDE4_KIO_LIBS}
61
 
  ${XAPIAN_LIBRARIES}
62
 
  ${KFILEMETADATA_LIBRARY}
63
 
  baloocore
64
 
  balooxapian
65
 
)