From 6603039c2db34c7c1a03a524007b9caeb5846768 Mon Sep 17 00:00:00 2001 From: comicfans44 Date: Mon, 14 Mar 2016 12:51:50 +0000 Subject: [PATCH] only compile wayland client when WAYLAND_FOUND --- client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 1e5c77223..bb8e4f61d 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -36,7 +36,7 @@ if(FREERDP_VENDOR AND WITH_CLIENT) add_subdirectory(X11) endif() - if(WITH_WAYLAND) + if(WITH_WAYLAND AND WAYLAND_FOUND) add_subdirectory(Wayland) endif()