blob: eb736c859c941b789d01934313329243f1c192a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
add_definitions(-DG_LOG_DOMAIN="${CMAKE_PROJECT_NAME}")
if(EXISTS "/usr/share/glib-2.0/schemas/com.ubuntu.sound.gschema.xml")
add_definitions( -DHAS_UBUNTU_TOUCH_SCHEMA )
endif()
add_compile_options(
${CXX_WARNING_ARGS}
)
add_library(
${SERVICE_LIB}
STATIC
adbd-client.cpp
exporter.cpp
greeter.cpp
indicator.cpp
rotation-lock.cpp
usb-manager.cpp
usb-monitor.cpp
usb-snap.cpp
)
add_executable(
${SERVICE_EXEC}
main.cpp
)
target_link_libraries(${SERVICE_EXEC}
${SERVICE_LIB}
${SERVICE_DEPS_LIBRARIES}
${THREAD_LINK_LIBRARIES}
)
install(
TARGETS
${SERVICE_EXEC}
RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_PKGLIBEXECDIR}
)
|