Skip to content

Instantly share code, notes, and snippets.

@richm
Created February 18, 2021 03:07
Show Gist options
  • Save richm/02db22e5406b3fb0f22b16a66397986b to your computer and use it in GitHub Desktop.
Save richm/02db22e5406b3fb0f22b16a66397986b to your computer and use it in GitHub Desktop.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build file",
"type": "shell",
"command": "gfortran -o ${file}.exe ${file}",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run file",
"type": "shell",
"command": "${file}.exe",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
},
"dependsOn":["Build file"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment