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 clean-one.o clean-one.c -Wall -DDEBUG \"-Dvariable=value with space\" -Iinclude",
11  "file": "${path}/clean-one.c"
12}
13,
14{
15  "directory": "${path}",
16  "command": "g++ -c -o clean-two.o clean-two.c -Wall -DDEBUG -Dvariable=value -I ./include",
17  "file": "${path}/clean-two.c"
18}
19,
20{
21  "directory": "${path}",
22  "command": "cc -c -o emit-one.o emit-one.c -Wall -DDEBUG \"-Dvariable=value with space\"",
23  "file": "${path}/emit-one.c"
24}
25,
26{
27  "directory": "${path}",
28  "command": "g++ -c -o emit-two.o emit-two.c -Wall -DDEBUG -Dvariable=value",
29  "file": "${path}/emit-two.c"
30}
31]
32