14 releases (6 breaking)

0.7.0 Jan 28, 2023
0.6.0 Jan 27, 2023
0.5.0 Dec 14, 2022
0.4.5 May 21, 2022
0.1.0 Apr 19, 2022

#394 in Operating systems


Used in boing

MPL-2.0 license

6.5MB
145K SLoC

Python 71K SLoC // 0.2% comments C++ 33K SLoC // 0.1% comments C 25K SLoC // 0.1% comments Objective-C 10K SLoC // 0.1% comments Rust 1K SLoC // 0.1% comments AsciiDoc 1K SLoC FORTRAN Modern 465 SLoC // 0.0% comments Vim Script 409 SLoC // 0.1% comments Shell 404 SLoC // 0.2% comments Vala 383 SLoC // 0.0% comments CUDA 322 SLoC D 291 SLoC // 0.0% comments GNU Style Assembly 231 SLoC // 0.0% comments Mustache 204 SLoC Java 145 SLoC Go 133 SLoC // 0.0% comments Swift 113 SLoC // 0.0% comments PowerShell 95 SLoC // 0.2% comments TypeScript 72 SLoC Cython 59 SLoC Forge Config 55 SLoC C# 54 SLoC Emacs Lisp 39 SLoC // 0.5% comments RPM Specfile 32 SLoC .NET Resource 31 SLoC Objective-C++ 29 SLoC Coq 28 SLoC JavaScript 22 SLoC Batch 20 SLoC XSL 19 SLoC // 0.4% comments Assembly 15 SLoC // 0.3% comments INI 15 SLoC FORTRAN Legacy 13 SLoC Happy 9 SLoC Automake 8 SLoC // 0.5% comments LLVM 4 SLoC

Contains (autotools obfuscated code, 1KB) configure

libui-ng-sys

crates.io docs MPL 2.0 licensed

Rust bindings to libui-ng.

Usage

Add the libui-ng-sys crate from crates.io to your Cargo.toml:

[dependencies]
libui-ng-sys = "0.7"

When built, the libui-ng-sys build script emits linker flags to the compiler that link libui-ng to your build product, whether that be an executable or another library.

The probe-system-libui Feature

By default, libui-ng-sys searches for an existing installation of libui-ng to link dynamically with. If libui-ng is not installed, it is built from source and linked statically. This behavior can be modified by disabling the probe-system-libui feature, which causes libui-ng to always be built from source:

[dependencies.libui-ng-sys]
default-features = false

Build Systems

By default, libui-ng-sys vendors the Ninja build system, builds Ninja, and then uses Ninja to build libui-ng. If you prefer a different build system, libui-ng-sys offers support for MSVC and Xcode under the build-with-msvc and build-with-xcode features, respectively. You can enable them in Cargo.toml like this:

[dependencies.libui-ng-sys]
features = ["build-with-msvc"] # Or "build-with-xcode"!

Build Requirements

If libui-ng is to be built from source, the host environment must provide a working C compiler, linker, and Python installation (≥ v3.7) at a minimum.

Additional per-platform build requirements are listed in the below sections.

Linux Build Requirements

GTK3 (≥ v3.10.0) is required. GTK4 is not currently supported.

GTK can be installed on APT-based systems with this command:

apt-get install libgtk-3-dev

Windows Build Requirements

A Windows 10 or 11 SDK is required.

SDKs may be acquired from the Visual Studio Installer.

Common Errors on Windows

If building libui-ng from source, all compiler components must be accessible from your $PATH. The easiest way to do this is to build libui-ng-sys from a Developer Command Prompt or Developer PowerShell. If libui-ng-sys suspects that some compiler components are missing, it will issue a warning to use a developer shell.

But, be careful to open the correct developer shell! On 64-bit Windows, the one containing "x64" is what you want. It might look like this:

x64 Native Tools Command Prompt for VS 2022

If libui-ng-sys is compiled with the wrong toolchain, libui-ng will fail to link, and you will receive cryptic linker errors like these:

basic.basic.6dc1d4cc-cgu.0.rcgu.o : error LNK2019: unresolved external symbol uiInit referenced in function _ZN5basic4main17h947588e76d3f9c99E

Vendored Dependencies

libui-ng-sys vendors libui-ng, Meson, and Ninja as Git submodules. The latest commit hashes and nominal versions of these submodules are documented below for each release of libui-ng-sys.

0.7.0

Dependency Commit Hash Nominal Version
libui-ng 8c82e737eea2f8ab3667e227142abd2fd221f038 alpha4.1-697
Meson 09ad4e28f1a59ab3d87de6f36540a108e836cfe5 0.62.0-112
Ninja 25cdbae0ee1270a5c8dd6ba67696e29ad8076919 1.11.0^2~2

0.2.0–0.6.0

Dependency Commit Hash Nominal Version
libui-ng 42641e3d6bfb2c49ca4cc3b03d8ae277d9841a5d alpha4.1-479
Meson 09ad4e28f1a59ab3d87de6f36540a108e836cfe5 0.62.0-112
Ninja 25cdbae0ee1270a5c8dd6ba67696e29ad8076919 1.11.0^2~2

0.1.0

Dependency Commit Hash Nominal Version
libui-ng 42641e3d6bfb2c49ca4cc3b03d8ae277d9841a5d alpha4.1-479

Acknowledgements

libui-ng-sys, and its sister crate boing, are the -ng analogues to @NoraCodes' libui-rs, which predated these crates by at least two years. Though it shares no common code with libui-ng-sys or boing and was developed separately, libui-rs was nonetheless inspiration for these crates, and I recommend checking out libui-rs as well as Nora's other work.

I should also thank @cody271 and @szanni for their help and contributions to libui-ng.

Dependencies

~0–16MB
~153K SLoC