21 lines
560 B
JSON
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"
|
|
},
|
|
]
|
|
} |