Skip to content

Commit 038d0d8

Browse files
committed
update dub.json
1 parent f1d1f8b commit 038d0d8

File tree

13 files changed

+52
-91
lines changed
  • lesson#10 - Setting up DUB with Raylib/raylib_firstWindow
  • lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow
  • lesson#12.1 - Structs/raylib_firstWindow
  • lesson#12.2 - Modules/raylib_firstWindow
  • lesson#13 - 2D Tic Tac Toe/ticTacToe
  • lesson#14 - 2D Snake Game
  • lesson#22 - Singleton design pattern/ourGame
  • lesson#23 - State design pattern/ourGame
  • lesson#25 - Wrapping up the Game State Manager/ourGame
  • lesson#26 - Drawing a player/ourGame
  • lesson#27 - in, out, inout type qualifiers/ourGame
  • lesson#28 - Simple spritesheet animation/ourGame
  • lesson#29 - Player spritesheet animation/ourGame

13 files changed

+52
-91
lines changed

lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#11 - Opening a window and drawing with Raylib/raylib_firstWindow/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#12.1 - Structs/raylib_firstWindow/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#12.2 - Modules/raylib_firstWindow/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#13 - 2D Tic Tac Toe/ticTacToe/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

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

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#22 - Singleton design pattern/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#23 - State design pattern/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#25 - Wrapping up the Game State Manager/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#26 - Drawing a player/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#27 - in, out, inout type qualifiers/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#28 - Simple spritesheet animation/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

lesson#29 - Player spritesheet animation/ourGame/dub.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@
66
"dependencies": {
77
"raylib-d": "~>5.0.1"
88
},
9-
"libs": [ "raylib" ],
10-
"lflags-posix" : ["-L."],
11-
"lflags-osx" : ["-rpath", "@executable_path/"],
12-
"lflags-linux" : ["-rpath=$$ORIGIN"],
13-
"preBuildCommands": [
14-
"dub run raylib-d:install"
15-
],
9+
"libs": [ "raylib" ],
10+
"lflags-posix" : ["-L."],
11+
"lflags-osx" : ["-rpath", "@executable_path/"],
12+
"lflags-linux" : ["-rpath=$$ORIGIN"],
1613
"description": "D/Raylib minimal setup",
1714
"license": "no license",
1815
"name": "d-raylib-project-template"

0 commit comments

Comments
 (0)