Files
frelay/.zed/tasks.json
2025-12-29 21:43:51 +08:00

30 lines
983 B
JSON

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