forked from NIVeriStandAdd-Ons/FPGA-Custom-Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.toml
51 lines (42 loc) · 1.15 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
[archive]
build_output_dir = 'Built'
archive_location = '\\us-aus-hilbuild\builds\niveristandadd-ons\custom devices\fpga_addon'
[projects.cd]
path = 'Source\FPGA Addon.lvproj'
[projects.api]
path = 'Source\FPGA Addon SysDef API.lvproj'
[projects.ip]
path = 'Source\FPGA Addon FPGA IP.lvproj'
[[build.steps]]
name = 'Configuration Library'
type = 'lvBuildSpec'
project = '{cd}'
target = 'My Computer'
build_spec = 'Configuration Release'
[[build.steps]]
name = 'Engine Libraries'
type = 'lvBuildSpecAllTargets'
project = '{cd}'
build_spec = 'Engine Release'
[[build.steps]]
name = 'FPGA IP'
type = 'lvBuildSpec'
project = '{ip}'
target = 'My Computer'
build_spec = 'FPGA IP Distribution'
[[build.steps]]
name = 'SysDef API'
type = 'lvBuildSpec'
project = '{api}'
target = 'My Computer'
build_spec = 'System Definition API'
[package]
type = 'nipkg'
name = 'ni-fpga-addon-{veristand_version}'
dev_xml_path = 'Source\Addon\Custom Device FPGA Addon.xml'
install_destination = 'documents\National Instruments\NI VeriStand {veristand_version}'
[[release.steps]]
name = 'Master Release'
type = 'githubRelease'
2019_release_branches = ["master",]
2020_release_branches = ["master",]