This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
forked from ducalex/retro-go
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathretro-go.code-workspace
80 lines (79 loc) · 1.5 KB
/
retro-go.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
{
"folders": [
{
"path": "components"
},
{
"path": "gnuboy-go"
},
{
"path": "handy-go"
},
{
"path": "huexpress-go"
},
// {
// "path": "meteor-go"
// },
// {
// "path": "mpython-go"
// },
// {
// "path": "neopop-go"
// },
{
"path": "nofrendo-go"
},
{
"path": "retro-go"
},
{
"path": "smsplusgx-go"
},
// {
// "path": "snes9x-go"
// },
// {
// "path": "stella-go"
// },
{
"path": ".",
"name": "root"
}
],
"settings": {
"esp.sdk-path": "C:/Users/alex/Apps/esp-idf/4.0",
"esp.tools-path": "C:/Users/alex/Apps/esp-idf/tools/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf",
"git.confirmForcePush": false,
"C_Cpp.default.defines": [
"PROJECT_VER",
"IS_LITTLE_ENDIAN",
"INLINE=",
"uint=unsigned int",
"CONFIG_FREERTOS_HZ=100"
],
"C_Cpp.default.includePath": [
"${workspaceFolder}/components/**",
"${workspaceFolder}/../components/**",
"${config:esp.sdk-path}/components/**",
"${config:esp.tools-path}/include/**"
],
"C_Cpp.default.forcedInclude": [
"${workspaceFolder}/build/config/sdkconfig.h",
"${workspaceFolder}/build/sdkconfig.h",
],
"C_Cpp.default.compilerPath": "${config:esp.tools-path}/bin/xtensa-esp32-elf-g++.exe",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.intelliSenseMode": "gcc-x64",
"cSpell.words": [
"huexpress",
"nofrendo",
"smsplusgx",
"supergraphx"
],
"files.exclude": {
"root": true,
}
}
}