aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2019-04-23 09:15:27 -0400
committerScott Murray <scott.murray@konsulko.com>2019-04-23 09:19:37 -0400
commitad3231a67595fdea3a9217d1d7a7ec85d3cac56a (patch)
tree67c918f35a574fa40dbd5d0e219ba7303d920a97
parentefc9161e0887f1ce8d2fa3d59b62087a8552b638 (diff)
Fix compilation against newer Wayland IVI extensionhalibut_7.99.1halibut/7.99.17.99.1
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>
-rw-r--r--app/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index 7fef810..229e961 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -31,10 +31,10 @@ add_executable(${TARGET_NAME}
)
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}"
)
@@ -50,5 +50,5 @@ set_target_properties(${TARGET_NAME} PROPERTIES
target_link_libraries(${TARGET_NAME}
windowmanager
${GSTREAMER_LIBRARIES}
- ${ILMCONTROL_LIBRARIES}
+ ${ILMCOMMON_LIBRARIES}
)