summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoungjae Cho <y0.cho@samsung.com>2021-06-17 15:05:01 +0900
committerYoungjae Cho <y0.cho@samsung.com>2021-06-17 15:05:01 +0900
commit46f444e2bcd7253b5dd708ccce1e46f2b7f80a42 (patch)
tree3c8a3fa7dc9db9c3ec7ae462c167b1f2bd89e599
parentf31d3dc48dfa36fcc79ce0ce1ccba7f744a36c34 (diff)
downloaddevice-emulator-46f444e2bcd7253b5dd708ccce1e46f2b7f80a42.tar.gz
device-emulator-46f444e2bcd7253b5dd708ccce1e46f2b7f80a42.tar.bz2
device-emulator-46f444e2bcd7253b5dd708ccce1e46f2b7f80a42.zip
Add libsyscommon to required package to provide linker flag
For haltest, it cannot run by itself because it is not able to resolve sys_get_int() symbol of libsyscommon. Therefore, provide ldflag to locate libsyscommon.so Change-Id: I5351662241a66c960bcb914e141ae331097e80b7 Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r--hw/display/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/CMakeLists.txt b/hw/display/CMakeLists.txt
index d9411fc..1db4a9e 100644
--- a/hw/display/CMakeLists.txt
+++ b/hw/display/CMakeLists.txt
@@ -4,7 +4,7 @@ PROJECT(hal-backend-device-display C)
SET(PREFIX ${CMAKE_INSTALL_PREFIX})
INCLUDE(FindPkgConfig)
-pkg_check_modules(hal-backend-device-display_pkgs REQUIRED hal-backend-device-common)
+pkg_check_modules(hal-backend-device-display_pkgs REQUIRED hal-backend-device-common libsyscommon)
FOREACH(flag ${display_pkgs_CFLAGS})
SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")