summaryrefslogtreecommitdiff
path: root/weston-ivi-shell
diff options
context:
space:
mode:
authorEmre Ucan <eucan@de.adit-jv.com>2015-05-21 11:31:07 +0200
committerNobuhiko Tanibata <nobuhiko_tanibata@xddp.denso.co.jp>2015-06-15 16:23:34 +0900
commit24e52176e23ef70519d83f0bb1b872cd186ab3f2 (patch)
treefd9f35c306eb04110063e9cecd869276962b592d /weston-ivi-shell
parentfbde0c90aaa4146e728de00a75d38705436d178b (diff)
downloadwayland-ivi-extension-24e52176e23ef70519d83f0bb1b872cd186ab3f2.tar.gz
cmake: remove cairo dependency
Signed-off-by: Emre Ucan <eucan@de.adit-jv.com>
Diffstat (limited to 'weston-ivi-shell')
-rw-r--r--weston-ivi-shell/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/weston-ivi-shell/CMakeLists.txt b/weston-ivi-shell/CMakeLists.txt
index 0f8df7d..dcab853 100644
--- a/weston-ivi-shell/CMakeLists.txt
+++ b/weston-ivi-shell/CMakeLists.txt
@@ -24,7 +24,6 @@ project(ivi-controller)
find_package(PkgConfig REQUIRED)
pkg_check_modules(WAYLAND_SERVER wayland-server>=1.7.0 REQUIRED)
-pkg_check_modules(CAIRO cairo REQUIRED)
pkg_check_modules(WESTON weston>=1.7.0 REQUIRED)
pkg_check_modules(PIXMAN pixman-1 REQUIRED)
@@ -34,7 +33,6 @@ include_directories(
src
${IVI_EXTENSION_INCLUDE_DIRS}
${WAYLAND_SERVER_INCLUDE_DIRS}
- ${CAIRO_INCLUDE_DIRS}
${WESTON_INCLUDE_DIRS}
${PIXMAN_INCLUDE_DIRS}
${WESTON_INCLUDE_DIRS}/weston
@@ -42,7 +40,6 @@ include_directories(
link_directories(
${WAYLAND_SERVER_LIBRARY_DIRS}
- ${CAIRO_LIBRARY_DIRS}
${PIXMAN_LIBRARY_DIRS}
)
@@ -57,7 +54,6 @@ set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")
add_dependencies(${PROJECT_NAME}
ivi-extension-protocol
${WAYLAND_SERVER_LIBRARIES}
- ${CAIRO_LIBRARIES}
${PIXMAN_LIBRARIES}
)
@@ -65,7 +61,6 @@ set(LIBS
${LIBS}
ivi-extension-protocol
${WAYLAND_SERVER_LIBRARIES}
- ${CAIRO_LIBRARIES}
)
set(CMAKE_C_LDFLAGS "-module -avoid-version")