-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
37 lines (31 loc) · 1.18 KB
/
Copy pathdub.json
File metadata and controls
37 lines (31 loc) · 1.18 KB
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
{
"name": "webui",
"description": "Use any web browser or WebView as GUI, with D in the backend and modern web technologies in the frontend, all in a lightweight portable library.",
"homepage": "https://webui.me",
"authors": [
"WebUI"
],
"copyright": "Copyright (c) 2020-2026 Hassan Draga",
"license": "MIT",
"targetType": "library",
"sourcePaths": ["source"],
"importPaths": ["source"],
"preGenerateCommands-windows": ["call \"$PACKAGE_DIR/bootstrap.bat\""],
"preGenerateCommands-posix": ["sh \"$PACKAGE_DIR/bootstrap.sh\""],
"sourceFiles-windows": ["$PACKAGE_DIR/lib/webui-2-static.lib"],
"libs-windows": ["user32", "advapi32", "shell32", "ole32", "oleaut32", "ws2_32"],
"lflags-linux": ["-L$PACKAGE_DIR/lib"],
"libs-linux": ["webui-2-static", "pthread", "m", "dl"],
"lflags-osx": ["-L$PACKAGE_DIR/lib", "-framework", "Cocoa", "-framework", "WebKit"],
"libs-osx": ["webui-2-static", "pthread", "m", "dl"],
"subPackages": [
"./examples/minimal/",
"./examples/call_d_from_js/",
"./examples/call_js_from_d/",
"./examples/serve_a_folder/",
"./examples/custom_web_server/",
"./examples/frameless/",
"./examples/public_network_access/",
"./examples/text_editor/"
]
}