~ci-train-bot/mediascanner2/mediascanner2-ubuntu-yakkety-landing-063

« back to all changes in this revision

Viewing changes to src/daemon/CMakeLists.txt

  • Committer: CI Train Bot
  • Author(s): James Henstridge
  • Date: 2015-11-09 01:56:37 UTC
  • mfrom: (288.1.28 external-metadata)
  • Revision ID: ci-train-bot@canonical.com-20151109015637-q4ixft4f3l2t1r3m
Move the metadata extractor to a separate process to isolate bugs in media codecs. Fixes: #1508142
Approved by: PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
add_definitions(${MEDIASCANNER_DEPS_CFLAGS} ${GST_CFLAGS} ${EXIF_CFLAGS} ${UDISKS_CFLAGS}
2
 
${PIXBUF_CFLAGS})
 
1
add_definitions(${MEDIASCANNER_DEPS_CFLAGS} ${UDISKS_CFLAGS})
3
2
include_directories(..)
4
3
 
5
4
add_library(scannerstuff STATIC
6
5
  InvalidationSender.cc
7
 
  MetadataExtractor.cc
8
6
  MountWatcher.cc
9
7
  SubtreeWatcher.cc
10
8
  Scanner.cc
11
9
  ../mediascanner/utils.cc
12
10
)
13
11
 
14
 
target_link_libraries(scannerstuff ${GST_LIBRARIES} ${EXIF_LDFLAGS} ${UDISKS_LDFLAGS}
15
 
${PIXBUF_LDFLAGS})
 
12
target_link_libraries(scannerstuff extractor-client ${UDISKS_LDFLAGS})
16
13
 
17
14
add_executable(scannerdaemon
18
15
  scannerdaemon.cc