summaryrefslogtreecommitdiff
path: root/dub.json
blob: f25a4e60c118b09705b345cc32abf56b94329361 (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
{
	"name": "tanya",
	"description": "General purpose, @nogc library. Containers, networking, metaprogramming, memory management, utilities",
	"license": "MPL-2.0",
	"copyright": "(c) Eugene Wissner <info@caraus.de>",
	"authors": [
		"Eugene Wissner"
	],

	"targetType": "library",

	"dependencies-linux": {
		"mir-linux-kernel": "~>1.0.0",
	},

	"configurations": [
		{
			"name": "library",
			"targetType": "staticLibrary",
			"versions": ["TanyaPhobos"]
		},
		{
			"name": "dynamic",
			"targetType": "dynamicLibrary",
			"versions": ["TanyaPhobos"]
		},
		{
			"name": "native",
			"targetType": "library",
			"platforms": ["linux-x86_64-gdc"],
			"preBuildCommands": ["ninja -C arch"],
			"lflags": ["arch/tanya.a"],
			"versions": ["TanyaNative"]
		}
	],
	"libs-windows": ["advapi32"]
}