tanya/dub.json

88 lines
1.6 KiB
JSON
Raw Normal View History

2016-08-24 18:15:21 +02:00
{
"name": "tanya",
"description": "@nogc library. Containers, networking, metaprogramming, memory management, utilities",
2016-08-24 18:15:21 +02:00
"license": "MPL-2.0",
"copyright": "© Eugene Wissner <info@caraus.de>",
2016-08-24 18:15:21 +02:00
"authors": [
"Eugene Wissner"
],
"targetType": "library",
2019-03-02 08:01:58 +01:00
"dependencies": {
"tanya:meta": "*",
"tanya:sys": "*",
"tanya:os": "*",
"tanya:encoding": "*",
"tanya:middle": "*",
"tanya:test": "*"
2019-03-02 08:01:58 +01:00
},
"dependencies-linux": {
"mir-linux-kernel": "~>1.0.0"
},
2019-03-02 08:01:58 +01:00
"subPackages": [
"./meta",
"./sys",
"./os",
"./encoding",
"./middle",
"./test"
2019-03-02 08:01:58 +01:00
],
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"]
},
{
"name": "unittest",
"versions": ["TanyaPhobos"],
"importPaths": [
"./source",
"./tests"
],
"sourcePaths": [
"./source",
"./tests"
]
},
{
"name": "unittest-native",
"platforms": ["linux-x86_64-gdc"],
"preBuildCommands": ["ninja -C arch"],
"lflags": ["arch/tanya.a"],
"versions": ["TanyaNative"],
"importPaths": [
"./source",
"./tests"
],
"sourcePaths": [
"./source",
"./tests"
]
2016-08-24 18:15:21 +02:00
}
],
2019-04-16 07:20:52 +02:00
"dflags-dmd": ["-dip1000"],
2019-04-15 06:42:57 +02:00
2018-09-01 09:56:44 +02:00
"libs-windows": ["advapi32"],
"libs-windows-x86_mscoff": ["iphlpapi"],
"libs-windows-x86_64": ["iphlpapi"]
2016-08-24 18:15:21 +02:00
}