~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to src/server/report/logging/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(${MIR_3RD_PARTY_INCLUDE_DIRECTORIES})
 
2
include_directories(${MIR_ANDROID_INCLUDE_DIRECTORIES})
 
3
set(
 
4
  LOGGING_SOURCES
 
5
 
 
6
  connector_report.cpp
 
7
  session_mediator_report.cpp
 
8
  message_processor_report.cpp
 
9
  display_report.cpp
 
10
  input_report.cpp
 
11
  compositor_report.cpp
 
12
  scene_report.cpp
 
13
  logging_report_factory.cpp
 
14
)
 
15
 
 
16
add_library(
 
17
  mirlogging STATIC
 
18
 
 
19
  ${LOGGING_SOURCES}
 
20
)
 
21
 
 
22
target_link_libraries(
 
23
  mirlogging
 
24
 
 
25
  mirplatform
 
26
 
 
27
  ${GLog_LIBRARY}
 
28
  ${GFlags_LIBRARY}
 
29
)