learn-dlang/lesson#14 - 2D Snake Game/dub.json

53 lines
825 B
JSON

{
"authors": [
"rillki"
],
"copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": {
"raylib-d": "~>4.0.1"
},
"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": "no license",
"name": "d-raylib-project-template"
}