From 163a0e700566ded73d40efba48e5e24be7c59d07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Zag=C3=B3rowski?= Date: Tue, 29 Aug 2023 19:27:22 +0200 Subject: [PATCH] make meson default build system --- .gitignore | 2 ++ hyprload.toml | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 67a882e..6c2c53c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ +build/ +.cache/ *.so compile_flags.txt diff --git a/hyprload.toml b/hyprload.toml index 461f608..dadc712 100644 --- a/hyprload.toml +++ b/hyprload.toml @@ -4,7 +4,8 @@ version = "1.0.0" author = "Duckonaut" [split-monitor-workspaces.build] -output = "split-monitor-workspaces.so" +output = "build/libsplit-monitor-workspaces.so" steps = [ - "make all", + "meson setup build --wipe", + "meson compile -C build", ]