From: Youngjae Cho Date: Thu, 17 Jun 2021 06:05:01 +0000 (+0900) Subject: Add libsyscommon to required package to provide linker flag X-Git-Tag: submit/tizen/20211220.040453~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46f444e2bcd7253b5dd708ccce1e46f2b7f80a42;p=platform%2Fhal%2Fbackend%2Femulator%2Fdevice-emulator.git 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 --- 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}")