From 2b4d96e0efe4ce4a13b8cdef0d1ff5981f674542 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Sat, 1 Apr 2023 02:22:52 +0100 Subject: [PATCH] examples: pull correct wlr dirs in example plugin --- example/examplePlugin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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