~morphis/unity-system-compositor/changes-for-virtual-output

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: CI Train Bot
  • Author(s): Cemil Azizoglu, Alexandros Frantzis
  • Date: 2015-09-22 16:44:52 UTC
  • mfrom: (200.2.54 usc-0.1)
  • Revision ID: ci-train-bot@canonical.com-20150922164452-ds83msd04iutfbvx
USC 0.1.2 release corresponding to Mir 0.16.0 release.
Approved by: PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  dbus_connection_handle.cpp
20
20
  dbus_event_loop.cpp
21
21
  dbus_message_handle.cpp
 
22
  display_configuration_policy.cpp
22
23
  external_spinner.cpp
23
24
  mir_screen.cpp
 
25
  mir_input_configuration.cpp
24
26
  powerd_mediator.cpp
25
27
  screen_event_handler.cpp
26
28
  server.cpp
28
30
  steady_clock.cpp
29
31
  system_compositor.cpp
30
32
  thread_name.cpp
 
33
  dbus_connection_thread.cpp
 
34
  unity_input_service.cpp
 
35
  unity_input_service_introspection.h
31
36
  unity_screen_service.cpp
32
37
  unity_screen_service_introspection.h
33
38
  window_manager.cpp
42
47
  VERBATIM
43
48
)
44
49
 
 
50
add_custom_command(
 
51
  OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/unity_input_service_introspection.h
 
52
  COMMAND sh generate_header_with_string_from_file.sh ${CMAKE_CURRENT_BINARY_DIR}/unity_input_service_introspection.h unity_input_service_introspection com.canonical.Unity.Input.xml
 
53
  DEPENDS com.canonical.Unity.Input.xml generate_header_with_string_from_file.sh
 
54
  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
 
55
  VERBATIM
 
56
)
 
57
 
45
58
# Compile system compositor
46
59
add_library(
47
60
  usc STATIC
85
98
)
86
99
 
87
100
# Install data files
88
 
install(FILES com.canonical.Unity.Screen.conf
 
101
install(FILES 
 
102
    com.canonical.Unity.conf
89
103
  DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/dbus-1/system.d
90
104
)
91
 
install(FILES com.canonical.Unity.Screen.xml
 
105
install(FILES
 
106
    com.canonical.Unity.Screen.xml
 
107
    com.canonical.Unity.Input.xml
92
108
  DESTINATION ${CMAKE_INSTALL_DATADIR}/dbus-1/interfaces
93
109
)
 
110