Files
nd-wfc/.vscode/tasks.json
cdemeyer-teachx 76ad49b05a wfc compiled
2025-08-24 17:15:09 +09:00

21 lines
560 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Sudoku",
"type": "shell",
"command": "cmake --build ${workspaceFolder}/demos/sudoku/build --config Debug",
"group": "build",
"problemMatcher": [],
"detail": "Build the sudoku demo"
},
{
"label": "Run Sudoku",
"type": "shell",
"command": "${workspaceFolder}/demos/sudoku/build/bin/sudoku_wfc_demo",
"group": "test",
"problemMatcher": [],
"detail": "Run the sudoku demo"
},
]
}