From: Sangyoon Jang Date: Tue, 7 Jun 2016 10:54:25 +0000 (+0900) Subject: Add missing dependency X-Git-Tag: accepted/tizen/common/20160607.194647^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F96%2F73296%2F4;p=platform%2Fcore%2Fappfw%2Fpkgmgr-info.git Add missing dependency libsmack is required for parser lib. (using smack_setlabel()) Change-Id: I26484db752120f8fec0205826886b07a32b7c25b Signed-off-by: Sangyoon Jang --- diff --git a/parser/CMakeLists.txt b/parser/CMakeLists.txt index c1d369c..8aa0381 100644 --- a/parser/CMakeLists.txt +++ b/parser/CMakeLists.txt @@ -48,7 +48,7 @@ endif() ### Get required CFLAGS, LDFLAGS from pkg-config include(FindPkgConfig) -pkg_check_modules(parser_pkgs REQUIRED dlog libxml-2.0 glib-2.0 sqlite3 db-util vconf bundle capi-system-info) +pkg_check_modules(parser_pkgs REQUIRED dlog libxml-2.0 glib-2.0 sqlite3 db-util vconf bundle capi-system-info libsmack) foreach(flag ${parser_pkgs_CFLAGS}) set(parser_pkgs_CFLAGS_str "${parser_pkgs_CFLAGS_str} ${flag}")