0adad32418
* fbt: fixed py scripts for gdb * fbt: removed compiled dolphin assets from tracked files; resolved cached dependency issues by globally disabling deps cache; changed dependency tracking for dolphin assets * fbt: fix for "resources" node lookup * toolchain: bump to v.16 with scons + x64 win binaries * fbt: using scons from toolchain * vscode: fixed paths for 64-bit Windows toolchain * fbt: added colors! * fbt: moved import validator to ansi lib coloring * fbt: moved COMSTR vars to tools * fbt: custom action for fap dist * fbt: added OPENOCD_ADAPTER_SERIAL configuration var for openocd operations * fbt: added get_stlink target * docs: details on libs for faps * vscode: added DAP config for using Flipper as a debugger for a 2nd Flipper * fbt: blind deps fix for sdk_origin * fbt: sdk: moved deployment actions to pure python * Github: disable disableLicenseExpirationCheck option for pvs Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Win32",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-windows/bin/arm-none-eabi-gcc.exe",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
},
|
|
{
|
|
"name": "Linux",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-linux/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
},
|
|
{
|
|
"name": "Mac",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-darwin/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |