{
	"authors": [
		"rillki"
	],
	"copyright": "Copyright © 2021, rillki",
	"targetPath": "bin",
	"dependencies": {
		"raylib-d": "~>3.1.0"
	},
	"configurations": [
		{
			"name": "osx-app",
			"platforms": ["osx"],
			"targetType": "executable",
			"libs": [
				"raylib"
			],
			"lflags": [
				"-framework",
				"IOKit",
				"-framework",
				"Cocoa",
				"-framework",
				"OpenGL"
			],
		},
		{
			"name": "linux-app",
			"platforms": ["linux"],
			"targetType": "executable",
			"libs": [
				"raylib",
				"GL",
				"m",
				"pthread",
				"dl",
				"rt",
				"X11"
			],
		},
		{
			"name": "windows-app",
			"platforms": ["windows"],
			"targetType": "executable",
			"libs": [
				"raylibdll"
			],
		},
	],
	"description": "D/Raylib minimal setup",
	"license": "MIT",
	"name": "d-raylib-project-template"
}