1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-07-25 15:41:27 +00:00

add debugging

This commit is contained in:
2021-09-16 18:09:38 -07:00
parent 33ebdabc07
commit dcd15f161d
4 changed files with 43 additions and 8 deletions

8
.vscode/tasks.json vendored
View File

@@ -3,15 +3,15 @@
"tasks": [
{
"type": "cppbuild",
"label": "Debug",
"label": "Build simulation",
"command": "g++",
"args": [
"-g",
"${workspaceFolder}\\src\\main.cpp",
"${workspaceFolder}/src/main.cpp",
"-o",
"${workspaceFolder}\\main.exe",
"${workspaceFolder}/main.exe",
"-I",
"${workspaceFolder}\\include"
"${workspaceFolder}/include"
],
"options": {
"cwd": "${fileDirname}"