fix: support x11 and wl configuration sandbox/pcoval/tizen
authorPhilippe Coval <philippe.coval@open.eurogiciel.org>
Thu, 6 Mar 2014 14:13:47 +0000 (15:13 +0100)
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>
Thu, 6 Mar 2014 14:13:47 +0000 (15:13 +0100)
Change-Id: Ie14afbc408022a6a834d131562d86009b66a95f0
Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
CMakeLists.txt

index 79a53ab..eb194aa 100755 (executable)
@@ -10,12 +10,14 @@ SET(PREFIX ${CMAKE_INSTALL_PREFIX})
 SET(INC_DIR include)
 INCLUDE_DIRECTORIES(${INC_DIR})
 
+SET(requires "elementary ecore ecore-file dlog vconf appcore-efl capi-base-common glib-2.0 gobject-2.0 fontconfig libxml-2.0")
+
 IF(X11_SUPPORT)
-SET(requires "elementary ecore ecore-x ecore-file dlog vconf appcore-efl capi-base-common glib-2.0 gobject-2.0 fontconfig libxml-2.0")
+SET(requires ${requires} ecore-x)
 ENDIF(X11_SUPPORT)
 
 IF(WAYLAND_SUPPORT)
-SET(requires "elementary ecore ecore-wayland ecore-file dlog vconf appcore-efl capi-base-common glib-2.0 gobject-2.0 fontconfig libxml-2.0")
+SET(requires ${requires} ecore-wayland)
 ENDIF(WAYLAND_SUPPORT)
 
 SET(pc_requires "capi-base-common")