This repository has been archived by the owner on Oct 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.toml
99 lines (83 loc) · 2.32 KB
/
build.toml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[archive]
build_output_dir = 'Built'
archive_location = '\\us-aus-hilbuild\builds\niveristandadd-ons\custom devices\instrument_addon'
[dependencies.Instrument-Custom-Device-Classes]
libraries = ['Protections.lvlibp','Protocols.lvlibp']
copy_location = 'Source\Addon\Support Libraries'
[projects.windows]
path = 'Source\Instrument Addon.lvproj'
[projects.linux32]
path = 'Source\Instrument Addon - Linux32.lvproj'
[projects.linux64]
path = 'Source\Instrument Addon - Linux64.lvproj'
[projects.api]
path = 'Source\Instrument Addon SysDef API.lvproj'
[[build.steps]]
name = 'Configuration Library'
type = 'lvBuildSpec'
project = '{windows}'
target = 'My Computer'
build_spec = 'Configuration Release'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Workspace Object'
type = 'lvBuildSpec'
project = '{windows}'
target = 'My Computer'
build_spec = 'Workspace Object'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Workspace Tool'
type = 'lvBuildSpec'
project = '{windows}'
target = 'My Computer'
build_spec = 'Workspace Tool'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Workspace Tool EXE'
type = 'lvBuildSpec'
project = '{windows}'
target = 'My Computer'
build_spec = 'Workspace Tool EXE'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Host API'
type = 'lvBuildSpec'
project = '{windows}'
target = 'My Computer'
build_spec = 'Host API'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Pharlap and Windows Engine'
type = 'lvBuildSpecAllTargets'
project = '{windows}'
build_spec = 'Engine Release'
dependency_target = 'pharlap'
[[build.steps]]
name = 'Linux32 Engine'
type = 'lvBuildSpecAllTargets'
project = '{linux32}'
build_spec = 'Engine Release'
dependency_target = 'linux_32_ARM'
[[build.steps]]
name = 'Linux64 Engine'
type = 'lvBuildSpecAllTargets'
project = '{linux64}'
build_spec = 'Engine Release'
dependency_target = 'linux_x64'
[[build.steps]]
name = 'SysDef API'
type = 'lvBuildSpec'
project = '{api}'
target = 'My Computer'
build_spec = 'System Definition API'
dependency_target = 'pharlap'
[package]
type = 'nipkg'
name = 'ni-instrument-addon-{veristand_version}'
dev_xml_path = 'Source\Addon\Custom Device Instrument Addon.xml'
install_destination = 'documents\National Instruments\NI VeriStand {veristand_version}'
[[release.steps]]
name = 'Master Release'
type = 'githubRelease'
2019_release_branches = ["master",]