Created
April 5, 2018 11:47
-
-
Save jy95/3ede8a542f044beb03754ef970c91dfd to your computer and use it in GitHub Desktop.
Dans .vscode/tasks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "0.1.0", | |
"tasks": [ | |
{ | |
"taskName": "build", | |
"command": "ozc", | |
"windows": { | |
"command": "C:\\Program Files\\Mozart\\bin\\ozc.exe" | |
}, | |
"isBuildCommand": true, | |
"isShellCommand": true, | |
"isBackground": true, | |
"args": [ | |
"-c", | |
"${file}" | |
], | |
"showOutput": "silent" | |
}, | |
{ | |
"taskName": "run", | |
"command": "ozengine", | |
"windows": { | |
"command": "C:\\Program Files\\Mozart\\bin\\ozengine.exe" | |
}, | |
"isShellCommand": true, | |
"args": [ | |
"${fileBasenameNoExtension}.ozf" | |
], | |
"showOutput": "always", | |
"isTestCommand": true, | |
"isBackground": false | |
}, | |
{ | |
"taskName": "clean", | |
"command": "rm", | |
"isShellCommand": true, | |
"args": [ | |
"${fileBasenameNoExtension}.ozf" | |
], | |
"showOutput": "silent" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment