summaryrefslogtreecommitdiff
path: root/dub.json
blob: 2d039690201467a3fe906aeca1e5d43f6067aaac (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
	"name": "tanya",
	"description": "@nogc library. Containers, networking, metaprogramming, memory management, utilities",
	"license": "MPL-2.0",
	"copyright": "© Eugene Wissner <belka@caraus.de>",
	"authors": [
		"Eugene Wissner"
	],

	"targetType": "library",

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

	"subPackages": [
		"./middle"
	],

	"configurations": [
		{
			"name": "library",
			"targetType": "staticLibrary",
			"versions": ["TanyaPhobos"]
		},
		{
			"name": "dynamic",
			"targetType": "dynamicLibrary",
			"versions": ["TanyaPhobos"]
		},
		{
			"name": "native",
			"targetType": "library",
			"platforms": ["linux-x86_64"],
			"versions": ["TanyaNative"]
		},
		{
			"name": "unittest",
			"versions": ["TanyaPhobos"],
			"importPaths": [
				"./source",
				"./tests"
			],
			"sourcePaths": [
				"./source",
				"./tests"
			]
		},
		{
			"name": "unittest-native",
			"platforms": ["linux-x86_64"],
			"versions": ["TanyaNative"],
			"importPaths": [
				"./source",
				"./tests"
			],
			"sourcePaths": [
				"./source",
				"./tests"
			]
		}
	],

	"dflags-dmd": ["-dip1000"],

	"libs-windows": ["advapi32"],
	"libs-windows-x86_mscoff": ["iphlpapi"],
	"libs-windows-x86_64": ["iphlpapi"]
}