The ilm_init function has moved to the new libilmCommon library in
Wayland IVI extension 2.x, so switch to using the ilmCommon package
config in the application CMakeLists.txt. ilmCommon has a dependency
on ilmControl, so that still gets pulled in.
Change-Id: Id9cefd7cb1ceec826d44011d91ad1f196e7e19b2
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
)
pkg_check_modules(GSTREAMER REQUIRED gstreamer-1.0)
-pkg_check_modules(ILMCONTROL REQUIRED ilmControl)
+pkg_check_modules(ILMCOMMON REQUIRED ilmCommon)
include_directories(
- "${ILMCONTROL_INCLUDE_DIRS}"
+ "${ILMCOMMON_INCLUDE_DIRS}"
"${GSTREAMER_INCLUDE_DIRS}"
)
target_link_libraries(${TARGET_NAME}
windowmanager
${GSTREAMER_LIBRARIES}
- ${ILMCONTROL_LIBRARIES}
+ ${ILMCOMMON_LIBRARIES}
)