Eugen Wissner
4acf163b42
Platform dependencies aren't supported according to the dub documentation, that states: "this setting does not support platform suffixes". dub test with dub 1.34.0 produces a warning: "dependencies-linux: Key is not a valid member of this section. Did you mean: dependencies" Then the build fails because it cannot find modules defined in the dependency.
77 lines
1.3 KiB
JSON
77 lines
1.3 KiB
JSON
{
|
|
"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": "*",
|
|
"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"]
|
|
}
|