summaryrefslogtreecommitdiff
path: root/dub.json
blob: e6dfaafb9f58b1960fb51358f8f73aaf95d8a4db (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
{
	"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",

	"configurations": [
		{
			"name": "library",
			"targetType": "library",
			"versions": ["TanyaPhobos"]
		},
		{
			"name": "native",
			"targetType": "library",
			"platforms": ["linux-x86_64"],
			"preBuildCommands": ["ninja -C arch"],
			"lflags": ["arch/tanya.a"]
		}
	]
}