Find a file
Vaxry 8d21d1dfa9 os: fixup process possible deadlock
Sloppy, but should work... Process shouldn't be used in performance-critical paths anyways.

ref https://github.com/hyprwm/Hyprland/issues/8425
2024-11-11 22:12:44 +00:00
.github/workflows ci: add pixman to dependencies 2024-06-18 23:36:10 +02:00
include/hyprutils os: Add process 2024-10-14 22:27:36 +01:00
nix nix: add debug flag 2024-11-07 10:41:43 +02:00
src os: fixup process possible deadlock 2024-11-11 22:12:44 +00:00
tests os: Add process 2024-10-14 22:27:36 +01:00
.clang-format utils: Initial Commit 2024-06-08 19:37:15 +02:00
.gitignore gitignore: add CMake residual files 2024-08-30 00:21:23 +03:00
CMakeLists.txt os: Add process 2024-10-14 22:27:36 +01:00
flake.lock flake.lock: update 2024-07-18 20:35:02 +03:00
flake.nix CMake, Nix: add VERSION file 2024-07-18 20:34:06 +03:00
hyprutils.pc.in utils: Initial Commit 2024-06-08 19:37:15 +02:00
LICENSE Initial commit 2024-06-08 18:51:36 +02:00
README.md README: Update build instructions (#4) 2024-06-25 01:18:45 +02:00
VERSION version: bump to 0.2.4 2024-11-09 14:42:18 +00:00

hyprutils

Hyprutils is a small C++ library for utilities used across the Hypr* ecosystem.

Stability

Hyprutils depends on the ABI stability of the stdlib implementation of your compiler. Sover bumps will be done only for hyprutils ABI breaks, not stdlib.

Building

git clone https://github.com/hyprwm/hyprutils.git
cd hyprutils/
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
sudo cmake --install build