This repository has been archived by the owner on Aug 13, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.bob.yml
111 lines (111 loc) · 2.87 KB
/
.bob.yml
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
100
101
102
103
104
105
106
107
108
109
110
111
- command:
name: debug
execute:
- gprbuild -P hunter.gpr
description: Build Hunter in debug mode
- command:
name: release
execute:
- others/build.tcl
description: Build Hunter in release mode
- command:
name: analyze
execute:
- gprbuild -P hunter.gpr -XMode=analyze
description: Build Hunter in analyze mode
- command:
name: clean
execute:
- gprclean -P hunter.gpr
description: Clean all compilation files
- command:
name: docs
execute:
- others/generatedocs.tcl
description: Generate code documentation
- command:
name: gprof
execute:
- gprof bin/hunter gmon.out
description: Generate gprof report
- command:
name: buildall
execute:
- bob release
- bob debug
description: Build Hunter release then debug version
- command:
name: generatetranslation
execute:
- others/translations.tcl generate
description: (Re)Generate ROOT translation of the program
- command:
name: createtranslation
execute:
- others/translations.tcl create $1
description: Create a new translation for the selected language
- command:
name: updatetranslations
execute:
- others/translations.tcl update
description: Update all existing translations (except ROOT)
- command:
name: pretty
execute:
- gnatpp -P hunter.gpr
- gnatpp -P hunter.gpr -XUI=console
description: Pretty print Hunter source code
- command:
name: push
execute:
- fossil push
- fossil git export --force
description: Update remote Fossil repository and its Git mirror
- command:
name: debugconsole
execute:
- gprbuild -P hunter.gpr -XUI=console
description: Build Hunter in debug mode with console UI
- command:
name: releaseconsole
execute:
- others/build.tcl console
description: Build Hunter in release mode with console UI
- command:
name: check
execute:
- others/check.tcl
description: Run AdaControl to check correctness of the code
flags:
- unixpath
- command:
name: checkconsole
variables:
- GPR_PROJECT = others/console.gpr
execute:
- others/check.tcl
description: Run AdaControl to check correctness of the code
flags:
- unixpath
- command:
name: checkall
execute:
- bob debug
- bob check
description: Run all the project tests
- command:
name: checkfile
execute:
- others/check.tcl $1
description: Run AdaControl to check correctness of the selected file. Required argument is relative path to the file which will be check
flags:
- unixpath
- command:
name: checkconsolefile
variables:
- GPR_PROJECT = others/console.gpr
execute:
- others/check.tcl $1
description: Run AdaControl to check correctness of the selected file in console version. Required argument is relative path to the file which will be check
flags:
- unixpath