From 23f5cec17cf7a24a6f12bf0b4ff1b7abc0d895ff Mon Sep 17 00:00:00 2001 From: "kirill.saidov" Date: Sun, 29 Aug 2021 10:52:14 +0600 Subject: [PATCH] dub.json updated --- .../ourGame/dub.json | 45 +++++++++++++------ .../ourGame/dub.json | 45 +++++++++++++------ .../ourGame/dub.json | 45 +++++++++++++------ 3 files changed, 96 insertions(+), 39 deletions(-) diff --git a/lesson#22 - Singleton design pattern/ourGame/dub.json b/lesson#22 - Singleton design pattern/ourGame/dub.json index 468f94a..b6b4967 100644 --- a/lesson#22 - Singleton design pattern/ourGame/dub.json +++ b/lesson#22 - Singleton design pattern/ourGame/dub.json @@ -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", + "GL", + "m", + "pthread", + "dl", + "rt", + "X11" + ], + }, + { + "name": "windows-app", + "platforms": ["windows"], + "targetType": "executable", + "libs": [ + "raylibdll" + ], + }, ], - "libs": [ - "raylib" - ], - "license": "no license", - "name": "ourgame" + "description": "D/Raylib minimal setup", + "license": "MIT", + "name": "d-raylib-project-template" } \ No newline at end of file diff --git a/lesson#23 - State design pattern/ourGame/dub.json b/lesson#23 - State design pattern/ourGame/dub.json index 468f94a..b6b4967 100644 --- a/lesson#23 - State design pattern/ourGame/dub.json +++ b/lesson#23 - State design pattern/ourGame/dub.json @@ -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", + "GL", + "m", + "pthread", + "dl", + "rt", + "X11" + ], + }, + { + "name": "windows-app", + "platforms": ["windows"], + "targetType": "executable", + "libs": [ + "raylibdll" + ], + }, ], - "libs": [ - "raylib" - ], - "license": "no license", - "name": "ourgame" + "description": "D/Raylib minimal setup", + "license": "MIT", + "name": "d-raylib-project-template" } \ No newline at end of file diff --git a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json index 468f94a..b6b4967 100644 --- a/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json +++ b/lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json @@ -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", + "GL", + "m", + "pthread", + "dl", + "rt", + "X11" + ], + }, + { + "name": "windows-app", + "platforms": ["windows"], + "targetType": "executable", + "libs": [ + "raylibdll" + ], + }, ], - "libs": [ - "raylib" - ], - "license": "no license", - "name": "ourgame" + "description": "D/Raylib minimal setup", + "license": "MIT", + "name": "d-raylib-project-template" } \ No newline at end of file