forked from fsr/c-lessons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_conf.json
58 lines (58 loc) · 2.05 KB
/
build_conf.json
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
{
"builds": {
"pdf": {
"source_dir": "latex/slides",
"target_dir": "build/pdf",
"command": "pdflatex",
"files": [
"01_basic_program_structure.tex",
"02_variables.tex",
"03_control_structures_1.tex",
"04_control_structures_2.tex",
"05_functions.tex",
"06_standard_library.tex",
"07_arrays.tex",
"08_complex_data_types.tex",
"09_pointers.tex",
"10_dynamic_storage.tex",
"11_debugging.tex",
"12_advanced_data_structures.tex",
"13_bitoperations.tex",
"14_project_organisation_and_external_libraries.tex",
"15_file_management.tex",
"16_parallel_programming.tex",
"17_storage_classes.tex",
"18_type_qualifiers.tex",
"19_c_preprocessor.tex",
"20_network.tex"
]
},
"html": {
"source_dir": "latex/slides",
"target_dir": "build/html",
"command": "hevea",
"files": [
"01_basic_program_structure.tex",
"02_variables.tex",
"03_control_structures_1.tex",
"04_control_structures_2.tex",
"05_functions.tex",
"06_standard_library.tex",
"07_arrays.tex",
"08_complex_data_types.tex",
"09_pointers.tex",
"10_dynamic_storage.tex",
"11_debugging.tex",
"12_advanced_data_structures.tex",
"13_bitoperations.tex",
"14_project_organisation_and_external_libraries.tex",
"15_file_management.tex",
"16_parallel_programming.tex",
"17_storage_classes.tex",
"18_type_qualifiers.tex",
"19_c_preprocessor.tex",
"20_network.tex"
]
}
}
}