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", ]