You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
995 B

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"windows": {
"options": {
"shell": {
"executable": "C:\\windows\\System32\\cmd.exe",
"args": [
"/d", "/c"
]
}
}
},
"tasks": [
{
"label": "build & run",
"type": "shell",
"command": "make.exe all workplaceFolder=${workspaceFolder} outputExe=${workspaceFolderBasename}.exe",
"args":[
"&& ${workspaceFolderBasename}.exe",
],
"options": {
"env":{
"PATH" : "C:\\raylib\\tcc\\;%PATH%"
}
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}