From 9bd4c8ea8d6661c114142affee1c75ee41fc21e0 Mon Sep 17 00:00:00 2001 From: Veselin Ivanov Date: Thu, 4 Oct 2018 21:16:00 +0300 Subject: [PATCH] Fixes building with newer versions of wlroots Most wlroots headers are still unstable and to use them we need to define WLR_USE_UNSTABLE. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 10654de..4c8df73 100644 --- a/meson.build +++ b/meson.build @@ -24,6 +24,7 @@ endif # Hiding depreciation warnings add_project_arguments('-DWL_HIDE_DEPRECATED', language: 'c') +add_project_arguments('-DWLR_USE_UNSTABLE', language: 'c') # Adding include directory inc_dir = include_directories('include')