-
Notifications
You must be signed in to change notification settings - Fork 3
/
dub.json
39 lines (39 loc) · 1.03 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
{
"name": "iup",
"description": "Deimos-like binding to IUP, Portable graphical User Interface",
"license": "MIT",
"copyright": "Copyright © 2016-2024, Carsten Blüggel",
"homepage": "https://github.com/carblue/iup",
"authors": [
"Carsten Blüggel"
],
"targetType": "sourceLibrary",
"importPaths": [
"source/",
"wrapper/"
],
"sourcePaths": [
"wrapper/"
],
"comment-lflags-posix-x86_64": ["The following is required in order to replace system's libftgl.so usage by Tecgraf/PUC-Rio's supplied one. Maybe the same applies for macOS ?"],
"lflags-posix-x86_64": [
"-L$PACKAGE_DIR/iup/lib/posix-x86_64",
"-rpath=$PACKAGE_DIR/iup/lib/posix-x86_64"
],
"libs-posix": [
"ftgl",
"iup",
"iupcontrols"
],
"dflags-windows-x86_64" : ["-m64"],
"sourceFiles-windows-x86_64": [
"lib/windows-x86_64/ftgl.lib",
"lib/windows-x86_64/iup.lib",
"lib/windows-x86_64/iupcontrols.lib"
],
"copyFiles-windows-x86_64": [
"lib/windows-x86_64/ftgl.dll",
"lib/windows-x86_64/iup.dll",
"lib/windows-x86_64/iupcontrols.dll"
]
}