tanya/dub.json

38 lines
794 B
JSON
Raw Normal View History

2016-08-24 18:15:21 +02:00
{
"name": "tanya",
"description": "General purpose, @nogc library. Containers, networking, metaprogramming, memory management, utilities",
2016-08-24 18:15:21 +02:00
"license": "MPL-2.0",
"copyright": "(c) Eugene Wissner <info@caraus.de>",
"authors": [
"Eugene Wissner"
],
"targetType": "library",
"dependencies-linux": {
"mir-linux-kernel": "~>1.0.0",
},
2016-08-24 18:15:21 +02:00
"configurations": [
{
"name": "library",
2018-01-13 06:21:42 +01:00
"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"]
2016-08-24 18:15:21 +02:00
}
],
"libs-windows": ["advapi32"]
2016-08-24 18:15:21 +02:00
}