diff options
author | Vaxry <[email protected]> | 2023-02-27 12:32:38 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-27 12:32:38 +0000 |
commit | 8b81f41e52b55835aaaa7e4962af23a00188cbdc (patch) | |
tree | bca65923843ea931c0e0222f29d4e2901cfa8637 /Makefile | |
parent | 74a10f26a469de54968e584525f6507928f615f0 (diff) | |
download | Hyprland-8b81f41e52b55835aaaa7e4962af23a00188cbdc.tar.gz Hyprland-8b81f41e52b55835aaaa7e4962af23a00188cbdc.zip |
Plugin System (#1590)
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -157,6 +157,7 @@ all: make clear make fixwlr cd ./subprojects/wlroots && meson build/ --buildtype=release && ninja -C build/ && cp ./build/libwlroots.so.12032 /usr/lib/ && cd ../.. + cd subprojects/udis86 && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja && cmake --build ./build --config Release --target all -j$(shell nproc) make protocols make release cd hyprctl && make all && cd .. @@ -211,6 +212,18 @@ config: cd subprojects/wlroots && ninja -C build/ install + cd subprojects/udis86 && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja && cmake --build ./build --config Release --target all -j$(shell nproc) + +pluginenv: + make protocols + + cd subprojects/udis86 && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja && cmake --build ./build --config Release --target all -j$(shell nproc) + + make fixwlr + + cd subprojects/wlroots && meson ./build --prefix=/usr --buildtype=release -Dwerror=false -Dexamples=false + cd subprojects/wlroots && ninja -C build/ + configdebug: make protocols |