KILL THE SINGLETON
[SmugglerRL.git] / dub.json
blob6ff6be53599bd6a6b3483147a9582c88e93af480
2         "name": "smugglerl",
3         "authors": [
4                 "Elronnd"
5         ],
6         "dflagsgdc-release": ["-Ofast", "-march=native", "-mtune=native", "-ffast-math"],
7         "dflagsldc-release": ["-O5", "-ffast-math", "-fp-contract=fast", "-flto=full"],
8         "dependencies": {
9                 "bearlibterminal": "~>1.5.5",
10                 "derelict-sdl2": "~>3.1.0-alpha.2",
11                 "ncurses": "~master"
12         },
14         "configurations": [
15                 {
16                         "name": "dynamicsdl",
17                         "versions": ["dynamic_sdl2"]
18                 },
19                 {
20                         "name": "staticsdl",
21                         "subConfigurations": {
22                                 "derelict-sdl2": "derelict-sdl2-static"
23                         },
24                         "libs": [
25                                 "sdl2", "SDL2_image", "SDL2_ttf", "SDL2_mixer"
26                         ],
27                         "versions": ["static_sdl2"]
28                 }
29         ],
30         "targetType": "executable",
31         "mainSourceFile": "src/main.d",
33         "description": "A roguelike in D.",
34         "copyright": "Copyright © 2017, Elronnd",
35         "license": "BSD-3"