From f2409884639276c1bc1e9a0f4e951c1934874938 Mon Sep 17 00:00:00 2001 From: falsycat Date: Thu, 10 Oct 2019 00:00:00 +0000 Subject: [PATCH] [add] Set new dub project up for game app. --- dub.json | 9 +++++++-- src/main.d | 5 +++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 src/main.d diff --git a/dub.json b/dub.json index 34dbb23..e13ce0f 100644 --- a/dub.json +++ b/dub.json @@ -1,7 +1,12 @@ { "name": "shapes-juke", - "targetType": "none", + "targetPath": ".bin", - "subPackages": ["sjscript", "sjplayer"] + "dependencies": { + "sjplayer": {"path": "sjplayer"}, + + "gl4d": {"path": "thirdparty/gl4d"}, + "derelict-sfml2": "~>4.0.0-beta.2" + } } diff --git a/src/main.d b/src/main.d new file mode 100644 index 0000000..28ec290 --- /dev/null +++ b/src/main.d @@ -0,0 +1,5 @@ +/// License: MIT + +int main(string[] args) { + return 0; +}