forked from symmetryinvestments/xlsxd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
28 lines (28 loc) · 757 Bytes
/
dub.json
File metadata and controls
28 lines (28 loc) · 757 Bytes
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
{
"name": "xlsxd",
"authors": [
"Robert Schadek"
],
"description": "A thin wrapper around libxlsx to write excel spreadsheets",
"copyright": "Symmetry Investments",
"license": "BSD",
"preBuildCommands-posix" : [
"make -C $PACKAGE_DIR libxlsxwriter/build/libxlsxwriter.a"
],
"preBuildCommands-windows-x86_mscoff" : [
"$PACKAGE_DIR\\windepbuild.bat Win32"
],
"preBuildCommands-windows-x86_64" : [
"$PACKAGE_DIR\\windepbuild.bat x64"
],
"libs" : ["xlsxwriter"],
"lflags-posix": [
"-L$PACKAGE_DIR/libxlsxwriter/build"
],
"lflags-windows-x86_mscoff": [
"/LIBPATH:$PACKAGE_DIR\\install_dir\\libxlsxwriter\\lib\\Win32\\Release"
],
"lflags-windows-x86_64": [
"/LIBPATH:$PACKAGE_DIR\\install_dir\\libxlsxwriter\\lib\\x64\\Release"
]
}