retro-go/retro-go.code-workspace
Alex Duchesne b6a5261d82 Make all apps default to little endian, instead of requiring a flag
There is now a flag for big-endian instead
2022-02-15 19:02:06 -05:00

87 lines
1.6 KiB
Plaintext

{
"folders": [
{
"path": "components"
},
{
"path": "gnuboy-go"
},
{
"path": "handy-go"
},
{
"path": "launcher"
},
{
"path": "nofrendo-go"
},
{
"path": "pce-go"
},
{
"path": "prboom-go"
},
{
"path": "smsplusgx-go"
},
{
"path": "snes9x-go"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
"esp.sdk-path": "C:/Users/alex/Apps/esp-idf/4.1",
"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",
"INLINE=",
"uint=unsigned int",
"CONFIG_FREERTOS_HZ=100",
"CONFIG_TCPIP_LWIP=1"
],
"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-x86",
"cSpell.words": [
"espressif",
"gnuboy",
"IRAM",
"mkfw",
"MOSI",
"MRGC",
"newboy",
"newfrendo",
"nofrendo",
"prboom",
"SDSPI",
"smsplusgx",
"TCPIP",
"WROVER"
],
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/build": true,
"root": true
},
"files.watcherExclude": {
"**/build/**": true,
"**/.git/**": true
}
}
}