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": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "no copyright", "copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": { "dependencies": {
"raylib-d": "~>3.0.4" "raylib-d": "~>3.1.0"
}, },
"description": "2D game",
"configurations": [ "configurations": [
{ {
"name": "ourgame", "name": "osx-app",
"platforms": ["osx"], "platforms": ["osx"],
"targetType": "executable", "targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework",
"CoreVideo",
"-framework", "-framework",
"IOKit", "IOKit",
"-framework", "-framework",
"Cocoa", "Cocoa",
"-framework", "-framework",
"GLUT",
"-framework",
"OpenGL" "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"
],
},
], ],
"libs": [ "description": "D/Raylib minimal setup",
"raylib" "license": "MIT",
], "name": "d-raylib-project-template"
"license": "no license",
"name": "ourgame"
} }

View File

@ -2,33 +2,52 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "no copyright", "copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": { "dependencies": {
"raylib-d": "~>3.0.4" "raylib-d": "~>3.1.0"
}, },
"description": "2D game",
"configurations": [ "configurations": [
{ {
"name": "ourgame", "name": "osx-app",
"platforms": ["osx"], "platforms": ["osx"],
"targetType": "executable", "targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework",
"CoreVideo",
"-framework", "-framework",
"IOKit", "IOKit",
"-framework", "-framework",
"Cocoa", "Cocoa",
"-framework", "-framework",
"GLUT",
"-framework",
"OpenGL" "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"
],
},
], ],
"libs": [ "description": "D/Raylib minimal setup",
"raylib" "license": "MIT",
], "name": "d-raylib-project-template"
"license": "no license",
"name": "ourgame"
} }

View File

@ -2,33 +2,52 @@
"authors": [ "authors": [
"rillki" "rillki"
], ],
"copyright": "no copyright", "copyright": "Copyright © 2021, rillki",
"targetPath": "bin",
"dependencies": { "dependencies": {
"raylib-d": "~>3.0.4" "raylib-d": "~>3.1.0"
}, },
"description": "2D game",
"configurations": [ "configurations": [
{ {
"name": "ourgame", "name": "osx-app",
"platforms": ["osx"], "platforms": ["osx"],
"targetType": "executable", "targetType": "executable",
"libs": [
"raylib"
],
"lflags": [ "lflags": [
"-framework",
"CoreVideo",
"-framework", "-framework",
"IOKit", "IOKit",
"-framework", "-framework",
"Cocoa", "Cocoa",
"-framework", "-framework",
"GLUT",
"-framework",
"OpenGL" "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"
],
},
], ],
"libs": [ "description": "D/Raylib minimal setup",
"raylib" "license": "MIT",
], "name": "d-raylib-project-template"
"license": "no license",
"name": "ourgame"
} }