This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGTT.sublime-project
102 lines (100 loc) · 3.29 KB
/
GTT.sublime-project
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
{
"folders":
[
{
"path": ".",
"name": "Configuration",
"file_exclude_patterns": [ ".sconsign.dblite" ],
"folder_exclude_patterns": [
"bin", "docs", "doxygen", "examples", "f_n_b", "include", "objects", "pch", "src", "test",
"thesis", ".sconf_temp"
]
},
{
"path": "include",
"name": "Public Headers"
},
{
"path": "src",
"name": "Source and Private Headers"
},
{
"path": "test",
"name": "Unit and Functional Tests"
},
{
"path": "f_n_b",
"name": "Flex and Bison"
},
{
"path": "doxygen",
"name": "Doxygen Documentation"
},
{
"path": "examples",
"name": "Examples"
}
],
"settings":
{
"ensure_newline_at_eof_on_save": true,
"rulers": [ 110 ],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
},
"build_systems":
[
{
"name": "Build All",
"selector": "source.c++, source.bison",
"shell_cmd": "scons --implicit-deps-unchanged --jobs 12 debug=1",
"working_dir": "${project_path}"
},
{
"name": "Model Development",
"shell_cmd": "scons -Q runModelsTests --implicit-cache --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "Routines Development",
"shell_cmd": "scons -Q runRoutinesTests --implicit-cache --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "GTL Development",
"shell_cmd": "scons -Q runGTLTests --implicit-cache --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "Program Controllers Development",
"shell_cmd": "scons -Q runProgramsTests --implicit-cache --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "Executables",
"shell_cmd": "scons -Q buildExecutables --implicit-deps-unchanged --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "Libraries",
"shell_cmd": "scons -Q buildLibraries --implicit-deps-unchanged --jobs 12 debug=1 2> errors.log",
"working_dir": "${project_path}"
},
{
"name": "Tutorial",
"shell_cmd": "doxygen doxygen/tutorial_",
"working_dir": "${project_path}"
},
{
"name": "Public API Documentation",
"shell_cmd": "doxygen doxygen/public_api",
"working_dir": "${project_path}"
},
{
"name": "Full API Documentation",
"shell_cmd": "doxygen doxygen/private_api",
"working_dir": "${project_path}"
}
]
}