dub.json updated

This commit is contained in:
kirill.saidov 2021-08-29 10:52:14 +06:00
parent f83fca363c
commit 23f5cec17c
3 changed files with 96 additions and 39 deletions

View File

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

View File

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

View File

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