diff options
author | Simon Ser <contact@emersion.fr> | 2023-09-01 00:22:03 +0900 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-09-01 00:28:55 +0900 |
commit | 2926acf60d80961597fa55ab68c3d15d7bf1980d (patch) | |
tree | c09d2d9b0d2367eeb797a9b46d6d51ce771e2638 | |
parent | 717ded9bb0191ea31bf4368be32e7a15fe1b8294 (diff) |
tinywl: set minimum wlroots version in Makefile
-rw-r--r-- | tinywl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinywl/Makefile b/tinywl/Makefile index 68bac252..0cfb3cd2 100644 --- a/tinywl/Makefile +++ b/tinywl/Makefile @@ -1,7 +1,7 @@ WAYLAND_PROTOCOLS=$(shell pkg-config --variable=pkgdatadir wayland-protocols) WAYLAND_SCANNER=$(shell pkg-config --variable=wayland_scanner wayland-scanner) LIBS=\ - $(shell pkg-config --cflags --libs wlroots) \ + $(shell pkg-config --cflags --libs "wlroots >= 0.17.0-dev") \ $(shell pkg-config --cflags --libs wayland-server) \ $(shell pkg-config --cflags --libs xkbcommon) |