-
Notifications
You must be signed in to change notification settings - Fork 7
/
CMakeLists.txt
50 lines (35 loc) · 1.48 KB
/
CMakeLists.txt
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
40
41
42
43
44
45
46
47
48
49
50
cmake_minimum_required(VERSION 3.13.0)
project(glacier-dialer
VERSION 0.3.0
DESCRIPTION "The Glacier dialer")
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_INSTALL_PREFIX /usr)
option(QML_DEBUG "Don't pack QML into binary for debug and develop" OFF)
include(FeatureSummary)
include(GNUInstallDirs)
set(QT_MIN_VERSION "6.0.0")
find_package(Qt6 COMPONENTS Gui Qml Quick DBus LinguistTools REQUIRED)
find_package(Glacier 1.0 COMPONENTS App REQUIRED)
add_subdirectory(src)
# Translations
qt6_create_translation(QM_FILES ${CMAKE_SOURCE_DIR}
translations/glacier-dialer_en.ts
translations/glacier-dialer_ru.ts)
file(GLOB TS_FILES translations/*.ts)
qt6_add_translation(QM_FILES ${TS_FILES})
add_custom_target(translations DEPENDS ${QM_FILES})
add_dependencies(glacier-dialer translations)
install(FILES voicecall-ui-prestart.service
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/systemd/user/)
install(FILES glacier-dialer.service
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/systemd/user/)
install(FILES com.nokia.telephony.callhistory.service org.glacier.voicecall.ui.service
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/dbus-1/services)
install(FILES ${QM_FILES}
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/glacier-dialer/translations)
install(FILES glacier-dialer.desktop
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
install(DIRECTORY images
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/glacier-dialer)