Switch to CMake

This commit is contained in:
Grant Terris
2019-08-10 16:31:12 -07:00
parent 9a99aa4835
commit 99b5733710
6 changed files with 201 additions and 24 deletions

16
.vscode/tasks.json vendored
View File

@@ -2,16 +2,26 @@
"version": "2.0.0",
"tasks": [
{
"label": "make",
"label": "cmake",
"type": "shell",
"command": "make",
"command": "cmake",
"args": [
"debug"
"."
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "make",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "cmake"
}
]
}