forked from linuxdeepin/treeland-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
35 lines (28 loc) · 1.03 KB
/
CMakeLists.txt
File metadata and controls
35 lines (28 loc) · 1.03 KB
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
cmake_minimum_required(VERSION 3.25.0)
project(TreelandProtocols VERSION 0.5.5)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
include(GNUInstallDirs)
add_subdirectory(cmake)
set(XML
xml/treeland-capture-unstable-v1.xml
xml/treeland-output-manager-v1.xml
xml/treeland-virtual-output-manager-v1.xml
xml/treeland-dde-shell-v1.xml
xml/treeland-personalization-manager-v1.xml
xml/treeland-wallpaper-color-v1.xml
xml/treeland-foreign-toplevel-manager-v1.xml
xml/treeland-shortcut-manager-v1.xml
xml/treeland-shortcut-manager-v2.xml
xml/treeland-window-management-v1.xml
xml/treeland-ddm-v1.xml
xml/treeland-screensaver-v1.xml
xml/treeland-prelaunch-splash-v1.xml
xml/treeland-prelaunch-splash-v2.xml
xml/treeland-app-id-resolver-v1.xml
xml/treeland-wallpaper-manager-unstable-v1.xml
xml/treeland-wallpaper-shell-unstable-v1.xml
xml/treeland-wine-window-management-unstable-v1.xml
xml/treeland-wine-window-state-unstable-v1.xml
)
install(FILES ${XML} DESTINATION ${CMAKE_INSTALL_DATADIR}/treeland-protocols)