-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstarstruck.code-workspace
82 lines (82 loc) · 1.49 KB
/
starstruck.code-workspace
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
80
81
82
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "core",
"path": "core"
},
{
"name": "kernel",
"path": "kernel",
},
{
"name": "elfloader",
"path": "elfloader"
},
{
"name": "modules",
"path": "modules",
},
{
"name": "tools",
"path": "tools",
},
{
"path": "sdk"
}
],
"settings":
{
"files.exclude": {
"kernel/**": true,
"core/**": true,
"elfloader/**": true,
"sdk/**": true,
"**/lib/**": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/build": true,
"**/*.elf": true,
"**/*.dol": true,
"**/*.bin": true,
"**/*.a": true,
},
"C_Cpp.default.cStandard": "gnu17",
"C_Cpp.default.cppStandard": "gnu++17",
"C_Cpp.default.intelliSenseMode": "gcc-arm",
"C_Cpp.default.compilerPath": "${DKP_HOME}/devkitARM/bin/arm-none-eabi-gcc",
"C_Cpp.default.includePath": [
"${workspaceFolder}/../core/include",
"${workspaceFolder}/include",
"${workspaceFolder}/source",
"${default}"
],
"files.associations": {
"*.h": "c",
"*.hpp": "cpp",
"*.c": "c",
"*.cpp": "cpp",
},
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"files.eol": "\n",
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"dan-c-underwood.arm",
"trond-snekvik.gnu-mapfiles",
"jeff-hykin.better-cpp-syntax",
"ms-vscode.makefile-tools",
"zachsez.vcode-ppc",
"ms-python.python"
]
}
}