1 | [ |
2 | { |
3 | "directory": "${path}", |
4 | "command": "g++ -c -o main.o main.c -Wall -DDEBUG -Dvariable=value", |
5 | "file": "${path}/main.c" |
6 | } |
7 | , |
8 | { |
9 | "directory": "${path}", |
10 | "command": "cc -c -o broken-one.o broken-one.c -Wall -DDEBUG \"-Dvariable=value with space\"", |
11 | "file": "${path}/broken-one.c" |
12 | } |
13 | , |
14 | { |
15 | "directory": "${path}", |
16 | "command": "g++ -c -o broken-two.o broken-two.c -Wall -DDEBUG -Dvariable=value", |
17 | "file": "${path}/broken-two.c" |
18 | } |
19 | , |
20 | { |
21 | "directory": "${path}", |
22 | "command": "cc -c -o clean-one.o clean-one.c -Wall -DDEBUG \"-Dvariable=value with space\" -Iinclude", |
23 | "file": "${path}/clean-one.c" |
24 | } |
25 | , |
26 | { |
27 | "directory": "${path}", |
28 | "command": "g++ -c -o clean-two.o clean-two.c -Wall -DDEBUG -Dvariable=value -I ./include", |
29 | "file": "${path}/clean-two.c" |
30 | } |
31 | , |
32 | { |
33 | "directory": "${path}", |
34 | "command": "cc -c -o emit-one.o emit-one.c -Wall -DDEBUG \"-Dvariable=value with space\"", |
35 | "file": "${path}/emit-one.c" |
36 | } |
37 | , |
38 | { |
39 | "directory": "${path}", |
40 | "command": "g++ -c -o emit-two.o emit-two.c -Wall -DDEBUG -Dvariable=value", |
41 | "file": "${path}/emit-two.c" |
42 | } |
43 | ] |
44 | |