mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
I spent some time getting VSCode debugging working. Now I can use VSCode on windows to work on jsix in Linux (WSL) and launch and debug it within QEMU. So many layers but it works pretty nicely!
17 lines
450 B
JSON
17 lines
450 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Linux",
|
|
"includePath": [
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"defines": [],
|
|
"compilerPath": "/usr/bin/clang",
|
|
"cStandard": "c17",
|
|
"cppStandard": "c++14",
|
|
"intelliSenseMode": "linux-clang-x64",
|
|
"compileCommands": "${workspaceFolder}/compile_commands.json"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |