-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
40 lines (40 loc) · 1.04 KB
/
dub.json
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
{
"name": "dorm",
"license": "MIT",
"authors": [
"WebFreak <[email protected]>",
"myOmikron <[email protected]>"
],
"copyright": "Copyright © 2022, WebFreak",
"dependencies": {
"mir-ion": "~>2.1",
"mir-toml": "~>0.1.1",
"vibe-core": { "optional": true, "version": ">=1.0.0" }
},
"preBuildCommands": ["\"$DC\" -run download_dependencies.d ARCH $DUB_ARCH PLATFORM $DUB_PLATFORM"],
"extraDependencyFiles-posix": [
"download-map.txt", "librorm.a"
],
"extraDependencyFiles-windows": [
"download-map.txt", "rorm.lib"
],
"libs": ["rorm"],
"lflags-linux": ["-L$PACKAGE_DIR", "-R$PACKAGE_DIR"],
"lflags-osx": [
"-L$PACKAGE_DIR",
"-framework", "CoreFoundation",
"-framework", "SystemConfiguration",
"-framework", "SecurityFoundation"
],
"lflags-windows": ["/DEFAULTLIB:MSVCRT", "/NODEFAULTLIB:libcmt", "/LIBPATH:$PACKAGE_DIR"],
"libs-windows": ["Ws2_32", "ntdll", "ucrt", "Bcrypt", "Userenv", "Ole32"],
"description": "A D ORM.",
"dflags": [
"-lowmem",
"-allinst"
],
"subPackages": [
"build-models",
"init-template"
]
}