From a99750a571eaadfc24dbc5f9df8eaeb397c33f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Sun, 5 Mar 2023 20:07:33 +0100 Subject: [PATCH] meson: include data only on linux data is related to flatpak --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index cbba514..8263aa3 100644 --- a/meson.build +++ b/meson.build @@ -59,8 +59,9 @@ cargo_sources = files( 'Cargo.toml', 'Cargo.lock', ) - +if host_system == 'linux' subdir('data') +endif subdir('src') subdir('po')