Skip to content

node-3d/deps-qt-qml-raub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

eb6e15d · Jan 12, 2025

History

95 Commits
Jan 11, 2025
Jan 11, 2025
Jan 12, 2025
Oct 24, 2023
Nov 20, 2019
Nov 16, 2024
Nov 16, 2024
Jan 11, 2025
Feb 7, 2018
Nov 16, 2024
Nov 16, 2024
Jan 11, 2025
Oct 24, 2023
Oct 24, 2023
Nov 16, 2024
Jan 11, 2025
Jan 11, 2025

Repository files navigation

Qt QML binaries

This is a part of Node3D project.

NPM ESLint Test

npm i -s deps-qt-qml-raub

This dependency package is distributing Qt Qml 6.8.0 binaries through NPM for Node.js addons.

  • Platforms (x64): Windows, Linux, Linux ARM, MacOS ARM.
  • Libraries: Qt Qml.
  • Linking: dynamic dll-type.

Windows

Before any import of Qt-dependent module, there should be require('deps-qt-qml-raub'). On Windows it adds Qt's DLL location to ENV PATH. On Unix it does nothing.

Unix

On Unix, special runtime library directories are not in ENV PATH. The paths to such directories have to be compiled into the node-addon with rpath option.

Adjust binding.gyp:

  'variables': {
    'bin': '<!(node -p "require(\'addon-tools-raub\').bin")',
    'qt_core_bin': '<!(node -p "require(\'deps-qt-core-raub\').bin")',
    'qt_gui_bin': '<!(node -p "require(\'deps-qt-gui-raub\').bin")',
    'qt_qml_bin': '<!(node -e "require(\'deps-qt-qml-raub\').bin")',
  },
  ...
  'targets': [
    {
      'target_name': '...',
      
      'conditions': [
        
        ['OS=="linux"', {
          'libraries': [
            "-Wl,-rpath,'$$ORIGIN'",
            "-Wl,-rpath,'$$ORIGIN/../node_modules/deps-qt-core-raub/<(bin)'",
            "-Wl,-rpath,'$$ORIGIN/../node_modules/deps-qt-gui-raub/<(bin)'",
            "-Wl,-rpath,'$$ORIGIN/../node_modules/deps-qt-qml-raub/<(bin)'",
            "-Wl,-rpath,'$$ORIGIN/../../deps-qt-core-raub/<(bin)'",
            "-Wl,-rpath,'$$ORIGIN/../../deps-qt-gui-raub/<(bin)'",
            "-Wl,-rpath,'$$ORIGIN/../../deps-qt-qml-raub/<(bin)'",
            '<(qt_core_bin)/libicui18n.so.73',
            '<(qt_core_bin)/libicuuc.so.73',
            '<(qt_core_bin)/libicudata.so.73',
            '<(qt_core_bin)/libicuio.so.73',
            '<(qt_core_bin)/libicule.so.73',
            '<(qt_core_bin)/libicutu.so.73',
            '<(qt_core_bin)/libQt6Core.so.6',
            '<(qt_core_bin)/libQt6Network.so.6',
            '<(qt_core_bin)/libQt6DBus.so.6',
            '<(qt_gui_bin)/libQt6Gui.so.6',
            '<(qt_gui_bin)/libQt6OpenGL.so.6',
            '<(qt_gui_bin)/libQt6Widgets.so.6',
            '<(qt_gui_bin)/libQt6XcbQpa.so.6',
            '<(qt_qml_bin)/libQt6Qml.so.6',
            '<(qt_qml_bin)/libQt6Quick.so.6',
            '<(qt_qml_bin)/libQt6QuickControls2.so.6',
            '<(qt_qml_bin)/libQt6QuickTemplates2.so.6',
            '<(qt_qml_bin)/libQt6QuickWidgets.so.6',
          ],
        }],
        
        ['OS=="mac"', {
          'libraries': [
            '-Wl,-rpath,@loader_path',
            '-Wl,-rpath,@loader_path/../node_modules/deps-qt-core-raub/<(bin)',
            '-Wl,-rpath,@loader_path/../node_modules/deps-qt-gui-raub/<(bin)',
            '-Wl,-rpath,@loader_path/../node_modules/deps-qt-qml-raub/<(bin)',
            '-Wl,-rpath,@loader_path/../../deps-qt-core-raub/<(bin)',
            '-Wl,-rpath,@loader_path/../../deps-qt-gui-raub/<(bin)',
            '-Wl,-rpath,@loader_path/../../deps-qt-qml-raub/<(bin)',
          ],
        }],
        
      ],
    },

Preload libraries:

#ifdef __linux__
	#include <dlfcn.h>
#endif
	
	// ... inside some kind of init() function
	#ifdef __linux__
	dlopen("libicui18n.so.73", RTLD_LAZY);
	dlopen("libicuuc.so.73", RTLD_LAZY);
	dlopen("libicudata.so.73", RTLD_LAZY);
	dlopen("libicuio.so.73", RTLD_LAZY);
	dlopen("libicule.so.73", RTLD_LAZY);
	dlopen("libicutu.so.73", RTLD_LAZY);
	dlopen("libQt6Core.so.6", RTLD_LAZY);
	dlopen("libQt6Network.so.6", RTLD_LAZY);
	dlopen("libQt6DBus.so.6", RTLD_LAZY);
	dlopen("libQt6Gui.so.6", RTLD_LAZY);
	dlopen("libQt6OpenGL.so.6", RTLD_LAZY);
	dlopen("libQt6Widgets.so.6", RTLD_LAZY);
	dlopen("libQt6XcbQpa.so.6", RTLD_LAZY);
	dlopen("libQt6Qml.so.6", RTLD_LAZY);
	dlopen("libQt6Quick.so.6", RTLD_LAZY);
	dlopen("libQt6QuickControls2.so.6", RTLD_LAZY);
	dlopen("libQt6QuickTemplates2.so.6", RTLD_LAZY);
	dlopen("libQt6QuickWidgets.so.6", RTLD_LAZY);
	#endif

Legal notice

This software uses the Qt library. Qt is legally used under the LGPLv3 (GNU Lesser General Public License) version. It is explicitly stated that Qt Libraries can be used in a commercial closed-source app (if you wish):

In case of dynamic linking, it is possible, but not mandatory, to keep application source code proprietary as long as it is “work that uses the library” – typically achieved via dynamic linking of the library.

These terms and conditions allow using (unmodified) Qt as a shared library (DLL), in a closed-source project.

Qt licensing information (a COPY) is given in a separate file, which also can be found on Qt's official web-site.

The binaries were extracted from installed copy of the framework.


The rest of this package is MIT licensed.