{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "cppbuild",
			"label": "Debug",
			"command": "g++",
			"args": [
				"-g",
				"${workspaceFolder}\\src\\main.cpp",
				"-o",
				"${workspaceFolder}\\build\\debug\\main.exe",
				"-I",
				"${workspaceFolder}\\include",
			],
			"options": {
				"cwd": "${fileDirname}"
			},
			"problemMatcher": [
				"$gcc"
			],
			"group": {
				"kind": "build",
				"isDefault": true
			},
		},
		{
			"type": "cppbuild",
			"label": "Release",
			"command": "g++",
			"args": [
				"${workspaceFolder}\\src\\main.cpp",
				"-o",
				"${workspaceFolder}\\build\\release\\main.exe",
				"-I",
				"${workspaceFolder}\\include",
			],
			"options": {
				"cwd": "${fileDirname}"
			},
			"problemMatcher": [
				"$gcc"
			],
			"group": {
				"kind": "build",
				"isDefault": true
			},
		}
	]
}