diff options
Diffstat (limited to 'dub.json')
-rw-r--r-- | dub.json | 29 |
1 files changed, 15 insertions, 14 deletions
@@ -4,6 +4,7 @@ ], "copyright": "Copyright © 2015 - 2020 Ralph Amissah", "name": "spine", + "version": "0.11.1", "description": "a sisu like document parser", "homepage": "http://sisudoc.org", "license": "AGPL-3.0+", @@ -13,15 +14,24 @@ "buildRequirements": [ "allowWarnings" ], "targetType": "executable", "platforms": [ "posix" ], + "buildTypes": { + "dmd": { + "dflags": [ "-J=views", "-I=src/doc_reform" ], + "buildOptions": [ "verbose", "inline" ], + "buildRequirements": [ "allowWarnings" ] + }, + "ldc": { + "dflags": [ "-O2", "-J=views", "-I=src/doc_reform" ], + "buildOptions": [ "verbose", "optimize", "inline" ], + "buildRequirements": [ "allowWarnings" ] + } + }, "dependencies": { "d2sqlite3": "~>0.19.1", "imageformats": "~>7.0.2", "dyaml": "~>0.8.0", "tinyendian": "~>0.2.0" }, - "subConfigurations": { - "d2sqlite3": "all-included" - }, "configurations": [ { "name": "default", @@ -36,16 +46,7 @@ "targetName": "spine-dmd" } ], - "buildTypes": { - "dmd": { - "dflags": [ "-J=views", "-I=src/doc_reform" ], - "buildOptions": [ "verbose", "inline" ], - "buildRequirements": [ "allowWarnings" ] - }, - "ldc": { - "dflags": [ "-O2", "-J=views", "-I=src/doc_reform" ], - "buildOptions": [ "verbose", "optimize", "inline" ], - "buildRequirements": [ "allowWarnings" ] - } + "subConfigurations": { + "d2sqlite3": "with-lib" } } |