From 6522a7acb4a87ecfa0f8e85a190b9743ba52a6f9 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 30 Mar 2019 09:15:51 +0100 Subject: [PATCH] chore: let compile sway modules even if we can't find the binary --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 605e58d..6c3ab68 100644 --- a/meson.build +++ b/meson.build @@ -72,7 +72,7 @@ src_files = files( 'src/client.cpp' ) -if find_program('sway', required : false).found() +if true # find_program('sway', required : false).found() add_project_arguments('-DHAVE_SWAY', language: 'cpp') src_files += [ 'src/modules/sway/ipc/client.cpp',