aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: 5066cbd3593c0f57b35ddaf803812b4d0db1f1c3 (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.lomiri.touch.system.gschema.xml")
  add_definitions( -DHAS_LOMIRI_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}
)