{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "process",
			"label": "buildSim",
			"command": "g++",
			"args": [
				"-g",
				"${workspaceFolder}/src/main.cpp",
				"-o",
				"${workspaceFolder}/main.exe",
				"-I",
				"${workspaceFolder}/include",
				"-Wall"
			],
			"options": {
				"cwd": "${fileDirname}"
			},
			"problemMatcher": [
				"$gcc"
			],
			"group": {
				"kind": "build",
				"isDefault": true
			},
		}
	]
}