forked from ni/niveristand-fpga-addon-custom-device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.toml
88 lines (75 loc) · 2.26 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
[archive]
build_output_dir = 'Built'
archive_location = '\\nirvana\Measurements\VeriStandAddons\fpga_addon_custom_device'
[projects.cd]
path = 'Source\FPGA Addon.lvproj'
[projects.api_examples]
path = 'Source\Examples\Scripting API Examples\FPGA Addon Scripting API Examples.lvproj'
[[build.steps]]
name = 'Packed Scripting API'
type = 'lvBuildSpec'
project = '{cd}'
target = 'My Computer'
build_spec = 'Packed Scripting API'
dependency_target = 'Windows'
[[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}'
target = 'My Computer'
build_spec = 'Engine Release'
[[build.steps]]
name = 'Engine Libraries'
type = 'lvBuildSpecAllTargets'
project = '{cd}'
target = 'RT PXI Target - Pharlap'
build_spec = 'Engine Release'
[[build.steps]]
name = 'Engine Libraries'
type = 'lvBuildSpecAllTargets'
project = '{cd}'
target = 'RT CompactRIO Target - Linux ARM'
build_spec = 'Engine Release'
[[build.steps]]
name = 'Engine Libraries'
type = 'lvBuildSpecAllTargets'
project = '{cd}'
target = 'RT CompactRIO Target - Linux x64'
build_spec = 'Engine Release'
[[build.steps]]
name = 'Engine Libraries'
type = 'lvBuildSpecAllTargets'
project = '{cd}'
target = 'RT CompactRIO Target - VxWorks'
build_spec = 'Engine Release'
[[build.steps]]
name = 'Scripting Examples'
type = 'lvBuildSpec'
project = '{api_examples}'
target = 'My Computer'
build_spec = 'Scripting Examples'
dependency_target = 'Windows'
[[package]]
type = 'nipkg'
payload_dir = 'Built\FPGA Addon'
install_destination = 'documents\National Instruments\NI VeriStand {veristand_version}\Custom Devices\FPGA Addon'
control_file = 'control'
package_output_dir = 'Built'
[[package]]
type = 'nipkg'
payload_dir = 'Built\Packed Scripting API'
install_destination = 'ni-paths-LV{veristand_version}DIR\vi.lib\addons\VeriStand Custom Device Scripting APIs\FPGA Addon'
control_file = 'control_scripting_api'
package_output_dir = 'Built'
[[package]]
type = 'nipkg'
payload_dir = 'Built\Scripting Examples'
install_destination = 'ni-paths-LV{veristand_version}DIR\examples\NI VeriStand Custom Devices\FPGA Addon'
control_file = 'control_scripting_examples'
package_output_dir = 'Built'