Add LLVM option to Sciter and then give up

This commit is contained in:
2026-01-08 22:59:00 +01:00
parent 99f8ae059c
commit 9fb8ec9454
5 changed files with 34 additions and 3 deletions

19
packages/sciter/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-out/bin/sciter",
"args": [],
"cwd": "${workspaceFolder}/zig-out/bin",
},
{
"name": "Attach",
"type": "lldb",
"request": "attach",
"program": "${workspaceFolder}/zig-out/bin/sciter",
},
]
}