Init commit. Windows version was checked.
This commit is contained in:
41
windows/.vscode/tasks.json
vendored
Normal file
41
windows/.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}/../mingw64/bin/mingw32-make.exe", // Or "mingw32-make" if you are using MinGW on Windows and "make" is not in your PATH
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Clean (Windows)",
|
||||
"type": "shell",
|
||||
"command": "del",
|
||||
"args": [
|
||||
"build\\*.o",
|
||||
"boat_sim.exe"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": "cleanup",
|
||||
"detail": "Deletes all object files (*.o) in the current directory"
|
||||
},
|
||||
{
|
||||
"label": "Run",
|
||||
"type": "shell",
|
||||
"command": "boat_sim.exe",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"dependsOn": "Build"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user