diff options
author | vaxerski <[email protected]> | 2023-04-01 02:22:52 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-04-01 02:22:52 +0100 |
commit | 2b4d96e0efe4ce4a13b8cdef0d1ff5981f674542 (patch) | |
tree | 21d639b83a2fd2865528bb09bd02f9affe5332f1 /example | |
parent | 16bc5997bb764a69433def368169a9f41a077dc6 (diff) | |
download | Hyprland-2b4d96e0efe4ce4a13b8cdef0d1ff5981f674542.tar.gz Hyprland-2b4d96e0efe4ce4a13b8cdef0d1ff5981f674542.zip |
examples: pull correct wlr dirs in example plugin
Diffstat (limited to 'example')
-rw-r--r-- | example/examplePlugin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/examplePlugin/Makefile b/example/examplePlugin/Makefile index 3ccc2930..ea5f3e6d 100644 --- a/example/examplePlugin/Makefile +++ b/example/examplePlugin/Makefile @@ -3,6 +3,6 @@ # and that you have ran `make protocols` in the hl dir. all: - g++ -shared -fPIC --no-gnu-unique main.cpp customLayout.cpp customDecoration.cpp -o examplePlugin.so -g -I "/usr/include/pixman-1" -I "/usr/include/libdrm" -I "${HYPRLAND_HEADERS}" -std=c++23 + g++ -shared -fPIC --no-gnu-unique main.cpp customLayout.cpp customDecoration.cpp -o examplePlugin.so -g -I "/usr/include/pixman-1" -I "/usr/include/libdrm" -I "${HYPRLAND_HEADERS}" -I "${HYPRLAND_HEADERS}/subprojects/wlroots/include" -I "${HYPRLAND_HEADERS}/subprojects/wlroots/include" -I "${HYPRLAND_HEADERS}/subprojects/wlroots/build/include" -std=c++23 clean: rm ./examplePlugin.so |