mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 14:54:53 -04:00
docs: README pass, add alternative editor documentation (Zed) (#4137)
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.
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
// 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",
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user