diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub copy.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub copy.json new file mode 100644 index 0000000..54b8fac --- /dev/null +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub copy.json @@ -0,0 +1,59 @@ +{ + "authors": [ + "rillki" + ], + "configurations": [ + { + "lflags": [ + "-framework", + "IOKit", + "-framework", + "Cocoa", + "-framework", + "OpenGL" + ], + "libs": [ + "raylib" + ], + "name": "osx-app", + "platforms": [ + "osx" + ], + "targetType": "executable" + }, + { + "libs": [ + "raylib", + "GL", + "m", + "pthread", + "dl", + "rt", + "X11" + ], + "name": "linux-app", + "platforms": [ + "linux" + ], + "targetType": "executable" + }, + { + "libs": [ + "raylib" + ], + "name": "windows-app", + "platforms": [ + "windows" + ], + "targetType": "executable" + } + ], + "copyright": "Copyright © 2021, rillki", + "dependencies": { + "raylib-d": "~>4.5.0" + }, + "description": "D/Raylib minimal setup", + "license": "no license", + "name": "d-raylib-project-template", + "targetPath": "bin" +} \ No newline at end of file diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json index 54b8fac..ad2c353 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.json @@ -2,56 +2,14 @@ "authors": [ "rillki" ], - "configurations": [ - { - "lflags": [ - "-framework", - "IOKit", - "-framework", - "Cocoa", - "-framework", - "OpenGL" - ], - "libs": [ - "raylib" - ], - "name": "osx-app", - "platforms": [ - "osx" - ], - "targetType": "executable" - }, - { - "libs": [ - "raylib", - "GL", - "m", - "pthread", - "dl", - "rt", - "X11" - ], - "name": "linux-app", - "platforms": [ - "linux" - ], - "targetType": "executable" - }, - { - "libs": [ - "raylib" - ], - "name": "windows-app", - "platforms": [ - "windows" - ], - "targetType": "executable" - } - ], "copyright": "Copyright © 2021, rillki", "dependencies": { - "raylib-d": "~>4.5.0" + "raylib-d": "~>5.0.1" }, + "libs": [ "raylib" ], + "lflags-posix" : ["-L."], + "lflags-osx" : ["-rpath", "@executable_path/"], + "lflags-linux" : ["-rpath=$$ORIGIN"], "description": "D/Raylib minimal setup", "license": "no license", "name": "d-raylib-project-template", diff --git a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json index c36eb2e..5e9f03d 100644 --- a/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json +++ b/lesson#10 - Setting up DUB with Raylib/raylib_firstWindow/dub.selections.json @@ -1,10 +1,6 @@ { "fileVersion": 1, "versions": { - "ddmp": "0.0.1-0.dev.3", - "fluent-asserts": "0.13.3", - "libdparse": "0.14.0", - "raylib-d": "4.5.0", - "stdx-allocator": "2.77.5" + "raylib-d": "5.0.1" } }