From 3696e4ded8d4fe6ce153b8ea006967e4eb5cfebf Mon Sep 17 00:00:00 2001 From: Jean-Benoit MARTIN Date: Thu, 27 Mar 2014 14:26:03 +0100 Subject: [PATCH] Add xwayland support Fix build when X11 and wayland are available Change-Id: I3ce38ccb9f150b4ec95f25c2e68b8973fa86807a Signed-off-by: Jean-Benoit MARTIN --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1970779..91ef82e 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,16 +11,16 @@ SET(INC_DIR include) INCLUDE_DIRECTORIES(${INC_DIR}) IF(X11_SUPPORT) -SET(ecore "ecore ecore-x") +SET(WIN_PKG "ecore-x") ENDIF(X11_SUPPORT) IF(WAYLAND_SUPPORT) -SET(ecore "ecore ecore-wayland") +SET(WIN_PKG "${WIN_PKG} ecore-wayland") ENDIF(WAYLAND_SUPPORT) SET(requires dlog vconf - elementary ${ecore} ecore-file appcore-efl + elementary ecore ${WIN_PKG} ecore-file appcore-efl capi-base-common glib-2.0 gobject-2.0 fontconfig libxml-2.0 ) -- 2.7.4