Files
frelay/.zed/tasks.json

30 lines
983 B
JSON
Raw Permalink Normal View History

2025-12-24 23:47:26 +08:00
[
{
2025-12-29 21:43:51 +08:00
"label": "Config",
2025-12-24 23:47:26 +08:00
"command": "cmd",
"env": {
2025-12-29 21:43:51 +08:00
"BUILDTOOL": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat\"",
2025-12-24 23:47:26 +08:00
},
"args": [
"/c",
2025-12-29 21:43:51 +08:00
"\"%BUILDTOOL% && cmake -Bbuild -G Ninja -S . -DCMAKE_PREFIX_PATH=C:\\Kit\\Qt6 -DCMAKE_EXPORT_COMPILE_COMMANDS=ON\"",
2025-12-24 23:47:26 +08:00
],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"show_command": true,
"show_summary": true,
},
{
2025-12-29 21:43:51 +08:00
"label": "Build",
2025-12-24 23:47:26 +08:00
"command": "cmd",
"env": {
2025-12-29 21:43:51 +08:00
"BUILDTOOL": "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat\"",
2025-12-24 23:47:26 +08:00
},
2025-12-29 21:43:51 +08:00
"args": ["/c", "\"%BUILDTOOL% && cmake --build build --config Debug\""],
2025-12-24 23:47:26 +08:00
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"show_command": true,
"show_summary": true,
},
]