-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.toml
81 lines (65 loc) · 1.77 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
[archive]
build_output_dir = 'Built'
archive_location = '\\nirvana\temp\dbuck\testbuild'
[dependencies.testbuild-deps]
libraries = ['PPL.lvlibp']
copy_location = 'includes'
[dependencies.local]
libraries = ['Built\lvBuildInternalDep\{target}\InternalDep.lvlibp']
copy_location = 'includes'
[projects.lvBuildSpec]
path = 'src\lvBuildSpec.lvproj'
[projects.lvBuildSpecAllTargets]
path = 'src\lvBuildSpecAllTargets.lvproj'
[projects.lvBuildAll]
path = 'src\lvBuildAll.lvproj'
[projects.lvSetConditionalSymbol]
path = 'src\lvSetConditionalSymbol.lvproj'
[projects.lvBuildInternalDep]
path = 'src\lvBuildInternalDep.lvproj'
[projects.lvBuildDeps]
path = 'src\lvBuildDeps.lvproj'
[[codegen.steps]]
name = 'Set Conditional Disable'
type = 'lvSetConditionalSymbol'
project = '{lvSetConditionalSymbol}'
symbol = 'symbol'
true_value = 'set'
false_value = 'unset'
condition = 'lvVersion < 2017'
[[codegen.steps]]
name = 'Run VI Codegen Test'
type = 'lvRunVi'
vi = 'src\helloworld.vi'
[[build.steps]]
name = 'Test Build Spec'
type = 'lvBuildSpec'
project = '{lvBuildSpec}'
target = 'My Computer'
build_spec = 'SourceDist'
[[build.steps]]
name = 'Test Build Spec All Targets'
type = 'lvBuildSpecAllTargets'
project = '{lvBuildSpecAllTargets}'
build_spec = 'SourceDist'
[[build.steps]]
name = 'Test Build All'
type = 'lvBuildAll'
project = '{lvBuildAll}'
[[build.steps]]
name = 'Test Build Internal Dep'
type = 'lvBuildSpec'
project = '{lvBuildInternalDep}'
target = 'My Computer'
build_spec = 'PPL'
[[build.steps]]
name = 'Test Dependencies'
type = 'lvBuildSpec'
project = '{lvBuildDeps}'
target = 'My Computer'
build_spec = 'SourceDist'
dependency_target = 'win'
[package]
type = 'nipkg'
payload_dir = 'Built'
install_destination = 'documents\National Instruments\NI VeriStand {veristand_version}\Custom Devices'