mirror of
https://github.com/open-goal/jak-project
synced 2026-06-21 00:31:41 -04:00
cbe21e3b4b
I'm switching away from visual studio (because its broken) so figured I'd document / commit the minimum to get a working environment with the editor I chose (Zed). Also cleaned up the main README so it's not so verbose, link out to secondary pages, etc. I also deleted the Arch and Fedora dockerfiles, they were broken. The ubuntu one still works, so i left it.
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Game - Jak 1 (Windows)",
|
|
"build": "Build - gk",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/gk.exe",
|
|
"args": ["-v", "--game", "jak1", "--", "-fakeiso", "-debug"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "Game - Jak 2 (Windows)",
|
|
"build": "Build - gk",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/gk.exe",
|
|
"args": ["-v", "--game", "jak2", "--", "-fakeiso", "-debug"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "Game - Jak 3 (Windows)",
|
|
"build": "Build - gk",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/gk.exe",
|
|
"args": ["-v", "--game", "jak3", "--", "-fakeiso", "-debug"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "REPL - Jak 1 (Windows)",
|
|
"build": "Build - goalc",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/goalc.exe",
|
|
"args": ["--user-auto", "--game", "jak1"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "REPL - Jak 2 (Windows)",
|
|
"build": "Build - goalc",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/goalc.exe",
|
|
"args": ["--user-auto", "--game", "jak2"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "REPL - Jak 3 (Windows)",
|
|
"build": "Build - goalc",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/goalc.exe",
|
|
"args": ["--user-auto", "--game", "jak3"],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
{
|
|
"label": "Tests - Unit - Draft Only (Windows)",
|
|
"build": "Build - goalc-test",
|
|
"program": "$ZED_WORKTREE_ROOT/out/build/Debug/bin/goalc-test.exe",
|
|
"args": ["--gtest_brief=0", "--gtest_filter=\"*Draft*\""],
|
|
"request": "launch",
|
|
"adapter": "CodeLLDB",
|
|
},
|
|
]
|