forked from JakobOvrum/LuaD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
38 lines (34 loc) · 989 Bytes
/
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
{
"name": "luad",
"description": "High-level Lua interface",
"authors": ["Jakob Ovrum", "Github contributors"],
"copyright": "Copyright© Jakob Ovrum 2010-2014",
"homepage": "http://jakobovrum.github.io/LuaD/",
"license": "MIT",
"targetType": "library",
"targetPath": "lib",
"sourcePaths": ["luad"],
"importPaths": ["."],
"libs-posix": ["dl"],
"libs-windows-x86_64-dmd": ["lua5.1"],
"configurations":[
{
"name":"windows-x86",
"platforms":["windows-x86"],
"lflags":["$PACKAGE_DIR/extlib/lua5.1.lib"],
"sourceFiles-windows-x86": ["extlib/lua5.1.lib"],
},
{
"name":"linux-x86",
"platforms":["linux-x86"],
"lflags":["$PACKAGE_DIR/extlib/x86_32-linux-gnu/liblua.a"],
"sourceFiles-linux-x86": ["extlib/x86_32-linux-gnu/liblua.a"],
},
{
"name":"linux-x86_64",
"platforms":["linux-x86_64"],
"lflags":["$PACKAGE_DIR/extlib/x86_64-linux-gnu/liblua.a"],
"sourceFiles-linux-x86_64-dmd": ["extlib/x86_64-linux-gnu/liblua.a"],
}
]
}