{"id":22427242,"url":"https://github.com/node-3d/deps-qt-gui-raub","last_synced_at":"2025-10-16T00:31:17.952Z","repository":{"id":16379560,"uuid":"79840778","full_name":"node-3d/deps-qt-gui-raub","owner":"node-3d","description":"Qt Gui binaries","archived":false,"fork":false,"pushed_at":"2025-01-12T19:39:34.000Z","size":68032,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-18T10:42:35.015Z","etag":null,"topics":["binary","dll","lib","node-3d","qt","qt-gui"],"latest_commit_sha":null,"homepage":"https://github.com/node-3d/node-3d","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/node-3d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-23T19:43:33.000Z","updated_at":"2025-01-12T19:39:37.000Z","dependencies_parsed_at":"2024-12-05T20:11:30.004Z","dependency_job_id":"21fa2755-7a0c-4226-950a-8c9532c6bbe9","html_url":"https://github.com/node-3d/deps-qt-gui-raub","commit_stats":{"total_commits":83,"total_committers":3,"mean_commits":"27.666666666666668","dds":0.4337349397590361,"last_synced_commit":"b0ea5e881303ce28dc96cd1cc2e36c4c5322b6e7"},"previous_names":["raub/node-deps-qt-gui"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/node-3d%2Fdeps-qt-gui-raub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/node-3d%2Fdeps-qt-gui-raub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/node-3d%2Fdeps-qt-gui-raub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/node-3d%2Fdeps-qt-gui-raub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/node-3d","download_url":"https://codeload.github.com/node-3d/deps-qt-gui-raub/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236657947,"owners_count":19184573,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binary","dll","lib","node-3d","qt","qt-gui"],"created_at":"2024-12-05T20:11:16.163Z","updated_at":"2025-10-16T00:31:17.629Z","avatar_url":"https://github.com/node-3d.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qt Gui binaries\n\nThis is a part of [Node3D](https://github.com/node-3d) project.\n\n[![NPM](https://badge.fury.io/js/deps-qt-gui-raub.svg)](https://badge.fury.io/js/deps-qt-gui-raub)\n[![ESLint](https://github.com/node-3d/deps-qt-gui-raub/actions/workflows/eslint.yml/badge.svg)](https://github.com/node-3d/deps-qt-gui-raub/actions/workflows/eslint.yml)\n[![Test](https://github.com/node-3d/deps-qt-gui-raub/actions/workflows/test.yml/badge.svg)](https://github.com/node-3d/deps-qt-gui-raub/actions/workflows/test.yml)\n\n```console\nnpm i -s deps-qt-gui-raub\n```\n\nThis dependency package is distributing **Qt Gui 6.8.0**\nbinaries through **NPM** for **Node.js** addons.\n\n* Platforms (x64): Windows, Linux, Linux ARM, MacOS ARM.\n* Libraries: Qt Gui.\n* Linking: dynamic dll-type.\n\n\n### Windows\n\nBefore any import of Qt-dependent module, there should be `require('deps-qt-gui-raub')`.\nOn Windows it adds Qt's DLL location to ENV PATH. On Unix it does nothing.\n\n\n### Unix\n\nOn Unix, **special** runtime library directories are not in ENV PATH. The paths\nto such directories have to be compiled into the node-addon with `rpath` option.\n\nAdjust `binding.gyp`:\n\n```javascript\n  'variables': {\n    'bin': '\u003c!(node -p \"require(\\'addon-tools-raub\\').bin\")',\n    'qt_core_bin': '\u003c!(node -p \"require(\\'deps-qt-core-raub\\').bin\")',\n    'qt_gui_bin': '\u003c!(node -p \"require(\\'deps-qt-gui-raub\\').bin\")',\n  },\n  ...\n  'targets': [\n    {\n      'target_name': '...',\n      \n      'conditions': [\n        \n        ['OS==\"linux\"', {\n          'libraries': [\n            \"-Wl,-rpath,'$$ORIGIN'\",\n            \"-Wl,-rpath,'$$ORIGIN/../node_modules/deps-qt-core-raub/\u003c(bin)'\",\n            \"-Wl,-rpath,'$$ORIGIN/../node_modules/deps-qt-gui-raub/\u003c(bin)'\",\n            \"-Wl,-rpath,'$$ORIGIN/../../deps-qt-core-raub/\u003c(bin)'\",\n            \"-Wl,-rpath,'$$ORIGIN/../../deps-qt-gui-raub/\u003c(bin)'\",\n            '\u003c(qt_core_bin)/libicui18n.so.73',\n            '\u003c(qt_core_bin)/libicuuc.so.73',\n            '\u003c(qt_core_bin)/libicudata.so.73',\n            '\u003c(qt_core_bin)/libicuio.so.73',\n            '\u003c(qt_core_bin)/libicule.so.73',\n            '\u003c(qt_core_bin)/libicutu.so.73',\n            '\u003c(qt_core_bin)/libQt6Core.so.6',\n            '\u003c(qt_core_bin)/libQt6Network.so.6',\n            '\u003c(qt_core_bin)/libQt6DBus.so.6',\n            '\u003c(qt_gui_bin)/libQt6Gui.so.6',\n            '\u003c(qt_gui_bin)/libQt6OpenGL.so.6',\n            '\u003c(qt_gui_bin)/libQt6Widgets.so.6',\n            '\u003c(qt_gui_bin)/libQt6XcbQpa.so.6',\n          ],\n        }],\n        \n        ['OS==\"mac\"', {\n          'libraries': [\n            '-Wl,-rpath,@loader_path',\n            '-Wl,-rpath,@loader_path/../node_modules/deps-qt-core-raub/\u003c(bin)',\n            '-Wl,-rpath,@loader_path/../node_modules/deps-qt-gui-raub/\u003c(bin)',\n            '-Wl,-rpath,@loader_path/../../deps-qt-core-raub/\u003c(bin)',\n            '-Wl,-rpath,@loader_path/../../deps-qt-gui-raub/\u003c(bin)',\n          ],\n        }],\n        \n      ],\n      \n    },\n```\n\n\nPreload libraries:\n\n```cpp\n#ifndef WIN32\n\t#include \u003cdlfcn.h\u003e\n#endif\n\t\n\t// ... inside some kind of init() function\n\t#ifdef __linux__\n\tdlopen(\"libicui18n.so.73\", RTLD_LAZY);\n\tdlopen(\"libicuuc.so.73\", RTLD_LAZY);\n\tdlopen(\"libicudata.so.73\", RTLD_LAZY);\n\tdlopen(\"libicuio.so.73\", RTLD_LAZY);\n\tdlopen(\"libicule.so.73\", RTLD_LAZY);\n\tdlopen(\"libicutu.so.73\", RTLD_LAZY);\n\tdlopen(\"libQt6Core.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6Network.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6DBus.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6Gui.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6OpenGL.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6Widgets.so.6\", RTLD_LAZY);\n\tdlopen(\"libQt6XcbQpa.so.6\", RTLD_LAZY);\n\t#endif\n```\n\n\n## Legal notice\n\nThis software uses the [Qt library](https://www.qt.io/).\nQt is legally used under the LGPLv3 (GNU Lesser General Public License) version.\nIt is [explicitly stated](https://www.qt.io/licensing/open-source-lgpl-obligations)\nthat Qt Libraries can be used in a commercial closed-source app (if you wish):\n\n\u003e In case of dynamic linking, it is possible, but not mandatory,\nto keep application source code proprietary as long as it is\n“work that uses the library” – typically achieved\nvia dynamic linking of the library.\n\nThese **terms and conditions** allow using (unmodified) Qt as a\nshared library (DLL), in a closed-source project.\n\nQt licensing information (a COPY) is given in a [separate file](/QT_LGPL),\nwhich also can be found on\n[Qt's official web-site](http://doc.qt.io/qt-6/lgpl.html).\n\nThe binaries were extracted from installed copy of the framework.\n\n---\n\nThe rest of this package is MIT licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnode-3d%2Fdeps-qt-gui-raub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnode-3d%2Fdeps-qt-gui-raub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnode-3d%2Fdeps-qt-gui-raub/lists"}