-
Notifications
You must be signed in to change notification settings - Fork 130
/
retro-go.code-workspace
95 lines (93 loc) · 1.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"folders": [
{
"path": "components"
},
{
"path": "fmsx"
},
{
"path": "gwenesis"
},
{
"path": "launcher"
},
{
"path": "prboom-go"
},
{
"path": "retro-core"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
/*
For C_cpp to work you must add these variables to your vs code config:
(This isn't ideal but I can't think of a better way...)
"retro-go.sdk-path": "/path/to/esp-idf/frameworks/esp-idf-v4.1.2",
"retro-go.tools-path": "/path/to/esp-idf/tools/xtensa-esp32-elf/esp-2020r3-8.4.0/xtensa-esp32-elf",
*/
"C_Cpp.default.defines": [
"RETRO_GO",
"CONFIG_FREERTOS_HZ=100",
"CONFIG_TCPIP_LWIP=1",
"RG_ENABLE_NETPLAY=",
"RG_ENABLE_NETWORKING=",
"RTC_NOINIT_ATTR=",
"ESP_PLATFORM="
],
"C_Cpp.default.includePath": [
"${workspaceFolder}/components/**",
"${workspaceFolder}/../components/**",
"${config:retro-go.sdk-path}/components/**",
"${config:retro-go.tools-path}/include/**"
],
"C_Cpp.default.forcedInclude": [
"${workspaceFolder}/build/config/sdkconfig.h",
"${workspaceFolder}/build/sdkconfig.h",
],
"C_Cpp.default.compilerPath": "${config:retro-go.tools-path}/bin/xtensa-esp32-elf-g++.exe",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.intelliSenseMode": "gcc-x86",
"cSpell.words": [
"apll",
"coleco",
"espressif",
"gnuboy",
"gpio",
"gwenesis",
"iram",
"mkfw",
"mkimg",
"MOSI",
"MRGC",
"NOINIT",
"newboy",
"newfrendo",
"ngpocket",
"nofrendo",
"odroid",
"prboom",
"sdmmc",
"sdspi",
"smsplusgx",
"snes",
"sram",
"tcpip",
"wrover",
"xtensa"
],
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/build": true,
"root": true
},
"files.watcherExclude": {
"**/build/**": true,
},
}
}