From e186fa4627327de17e9069e00fc354c430cd725d Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 30 Jan 2021 09:04:22 -0500 Subject: [PATCH] meson: disable CSRI on non-windows for now --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index bd27bf4f1..7b8ecb7ab 100644 --- a/meson.build +++ b/meson.build @@ -304,7 +304,7 @@ endif deps += dep_gl -if not get_option('csri').disabled() +if not get_option('csri').disabled() and host_machine.system() == 'windows' conf.set('WITH_CSRI', 1) csri_sp = subproject('csri')