-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathc_cpp_properties.json
More file actions
79 lines (79 loc) · 2.68 KB
/
Copy pathc_cpp_properties.json
File metadata and controls
79 lines (79 loc) · 2.68 KB
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
{
"configurations": [
{
"name": "SA2 Linux GBA",
"includePath": [
"${workspaceFolder}/include/**"
],
"defines": ["PLATFORM_GBA=1", "GAME=GAME_SA2"],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "SA1 Linux GBA",
"includePath": [
"${workspaceFolder}/include/**", "${workspaceFolder}/sa1/include/**"
],
"defines": ["PLATFORM_GBA=1", "GAME=GAME_SA1"],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "Linux portable",
"includePath": [
"${workspaceFolder}/include/**"
],
"defines": [
"PORTABLE=1"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "Linux-chao_garden",
"includePath": [
"${workspaceFolder}/chao_garden/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "Linux-subgame_loader",
"includePath": [
"${workspaceFolder}/multi_boot/subgame_loader/signed_payload/payload/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
},
{
"name": "Linux-collect_rings_rom",
"includePath": [
"${workspaceFolder}/multi_boot/roms/collect_rings/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}