mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-02 10:15:59 +01:00
9 lines
399 B
Makefile
9 lines
399 B
Makefile
|
# compile with HYPRLAND_HEADERS=<path_to_hl> make all
|
||
|
# make sure that the path above is to the root hl repo directory, NOT src/
|
||
|
# and that you have ran `make protocols` in the hl dir.
|
||
|
|
||
|
all:
|
||
|
g++ -shared -fPIC --no-gnu-unique main.cpp borderDeco.cpp -o borders-plus-plus.so -g -I "/usr/include/pixman-1" -I "/usr/include/libdrm" -I "${HYPRLAND_HEADERS}" -std=c++23
|
||
|
clean:
|
||
|
rm ./borders-plus-plus.so
|