raylib/projects/VSCode_tcc_win/.vscode/tasks.json
pah arif b4af1b2cc0
add makefile to support multiple C files (#1195)
* tcc-based vscode project for windows

Signed-off-by: misterpah <misterpah@gmail.com>

* add makefile to support multiple C files
2020-04-11 20:01:28 +02:00

37 lines
995 B
JSON

{
// 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"
]
}
]
}