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
{
"targets": [
{
"cFlags": [ ],
"cmd": "gcc a.c b.c -o a.out",
"compiler": "gcc",
"files": [
"a.c",
"b.c"
],
"out": "a.out"
},
{
"cFlags": [ ],
"cmd": "clang test.c -o test",
"compiler": "clang",
"files": [
"test.c"
],
"out": "test"
},
{
"cFlags": [
"-O3",
"-DNDEBUG"
],
"cmd": "clang -O3 -DNDEBUG test2.c -o test2",
"compiler": "clang",
"files": [
"test2.c"
],
"out": "test2"
},
{
"cFlags": [
"-O3",
"-DNDEBUG",
"-g"
],
"cmd": "gcc -O3 -DNDEBUG -g foo.c bar.c -o baz",
"compiler": "gcc",
"files": [
"foo.c",
"bar.c"
],
"out": "baz"
}
]
}