forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
50 lines (46 loc) · 955 Bytes
/
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
# Copyright (c) 2021 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License,
# attached with Common Clause Condition 1.0, found in the LICENSES directory.
# These configuration files are for reference to generate your own customized ones.
# Thus, they are installed as read-only, even for the owner.
install(
FILES
nebula-graphd.conf.default
nebula-graphd.conf.production
PERMISSIONS
OWNER_READ
GROUP_READ
WORLD_READ
DESTINATION
etc
COMPONENT
graph
)
install(
FILES
nebula-metad.conf.default
nebula-metad.conf.production
PERMISSIONS
OWNER_READ
GROUP_READ
WORLD_READ
DESTINATION
etc
COMPONENT
meta
)
install(
FILES
nebula-storaged.conf.default
nebula-storaged.conf.production
nebula-storaged-listener.conf.production
PERMISSIONS
OWNER_READ
GROUP_READ
WORLD_READ
DESTINATION
etc
COMPONENT
storage
)