summaryrefslogtreecommitdiff
path: root/dub.json
blob: 79f7c904d1674775f0be493451c481bea3d96a91 (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
71
72
73
74
75
76
77
78
79
{
	"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:meta": "*",
		"tanya:os": "*",
		"tanya:middle": "*",
		"tanya:test": "*"
	},

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

	"subPackages": [
		"./meta",
		"./os",
		"./middle",
		"./test"
	],

	"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"]
}