forked from MGWL/QtE5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
57 lines (57 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "qte5",
"authors": [
"MGW <[email protected]> Mohov Gennady Vladimirovich"
],
"description": "The minimum wrapper of Qt-5 for D",
"copyright": "Copyright © 2015, MGW, https://github.com/MGWL/QtE5",
"license": "GPL-3.0",
"version": "0.0.7",
"buildType": "release",
"sourceFiles": [
"source/qte5.d", "source/asc1251.d"
],
"copyFiles-windows-x86": [
"$PACKAGE_DIR/windows32/QtE5Widgets32.dll"
],
"copyFiles-windows-x86_64": [
"$PACKAGE_DIR/windows64/QtE5Widgets64.dll"
],
"copyFiles-linux-x86": [
"$PACKAGE_DIR/linux32/libQtE5Widgets32.so"
],
"copyFiles-linux-x86_64": [
"$PACKAGE_DIR/linux64/libQtE5Widgets64.so"
],
"target": "sourceLibrary",
"configurations": [
{
"name": "exampleWindows32",
"targetName": "exampleWindows",
"workingDirectory": "example",
"platforms": ["windows"],
"mainSourceFile": "example/example.d",
"lflags-windows": [
"/subsystem:windows"
],
"postBuildCommands": [
"$PACKAGE_DIR/rtl_qt5_32/c.cmd $PACKAGE_DIR"
],
"targetPath": "exampleWindows32",
"targetType": "executable"
},
{
"name": "exampleLinux",
"targetName": "exampleLinux",
"workingDirectory": "exampleLinux",
"platforms": ["linux"],
"mainSourceFile": "example/example.d",
"postBuildCommands": [
"sh $PACKAGE_DIR/example/c.sh $PACKAGE_DIR"
],
"targetPath": "exampleLinux",
"targetType": "executable"
}
],
"target": "sourceLibrary"
}