aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdlang/dub.json
blob: d5a0493cab07c3ae14e2fa7db0913d7df38baf82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
	"name":        "sdlang-d",
	"description": "An SDL (Simple Declarative Language) library for D.",
	"homepage":    "http://github.com/Abscissa/SDLang-D",
	"authors":     ["Nick Sabalausky"],
	"license":     "zlib/libpng",
	"copyright":   "©2012-2015 Nick Sabalausky",
	"sourcePaths": ["."],
	"importPaths": ["."],
	"buildRequirements": ["allowWarnings"],
	"dependencies": {
		"libinputvisitor": "~>1.2.0"
	},
	"subPackages": [
		"./libinputvisitor"
	],
	"configurations": [
		{
			"name": "test",
			"targetType": "executable",
			"versions": ["SDLang_TestApp"],
			"targetPath": "../../bin/",
			"targetName": "sdlang"
		},
		{
			"name": "library",
			"targetType": "library"
		},
		{
			"name": "unittest",
			"targetType": "executable",
			"targetPath": "../../bin/",
			"targetName": "sdlang-unittest",

			"versions": ["sdlangUnittest", "sdlangTrace"]
		}
	]
}