{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "process",
			"label": "Build Server",
			"group": "build",
			"command": "${workspaceFolder}/make",
			"args": ["server", "--no-cross"],
			"options": {
				"cwd": "${workspaceFolder}",
			},
		},
		{
			"type": "process",
			"label": "Build Client",
			"group": "build",
			"command": "${workspaceFolder}/make",
			"args": ["client"],
			"options": {
				"cwd": "${workspaceFolder}",
			},
		},
		{
			"label": "Build Client and Server",
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"dependsOn": ["Build Client", "Build Server"]
		}
	],
}
