-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_opt.yaml
70 lines (61 loc) · 1.84 KB
/
build_opt.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#version info, major.minor:patch
version:
major: 0
minor: 1
patch: 0
# libs required to builds the executable
dev_deps:
- libnm-util
- libnm-glib
- gtk+-3.0
# vala files compiled, in deps order
# custom search path can be specified as
# - custom.vala: "/this/can/be/relative/or/absolute/"
vala_files:
- helper.vala: ./src
- wifidevice.vala: ./src
- manager.vala: ./src
- dns.ui.vala: ./src
- config.ui.vala: ./src
- apapplet.ui.vala: ./src
- device.ui.vala: ./src
- main.ui.vala: ./src
- exec.vala: ./src
# vala ui files, composite templates, in deps order(optionally)
# generator will try to find the corresponding vala file and compile it
# if not found a warning will be shown
# example. if an ui file is added as hello.ui, it will try to find and add hello.ui.vala to vala_files
# custom vala can be specified as
# - custom.ui
# path: "/this/can/be/relative/or/absolute/any.ui"
# vala_path: "/this/can/be/relative/or/absolute/whatever.ui.vala"
# using 'null' as vala path will ensure the generator will not add anything to vala compile list
# and also wont warn
ui_files:
- apapplet.ui:
path: ./src
vala_path: ./src/apapplet.ui.vala
- dns.ui:
path: ./src
vala_path: ./src/dns.ui.vala
- config.ui:
path: ./src
vala_path: ./src/config.ui.vala
- device.ui:
path: ./src
vala_path: ./src/device.ui.vala
- main.ui:
path: ./src
vala_path: ./src/main.ui.vala
# res.xml path
res_xml: res.xml #"/this/can/be/relative/or/absolute/any.xml"
# build options
debug_build: true
release_build: true
c_path: #"/this/can/be/relative/or/absolute/"
debug_path: #"/this/can/be/relative/or/absolute/"
release_path: #"/this/can/be/relative/or/absolute/"
modified_src_path: #"/this/can/be/relative/or/absolute/"
release_executable: "run"
debug_executable: "debug_run"
makefile: Makefile