From: Sunmin Lee Date: Fri, 6 Jan 2017 11:51:33 +0000 (+0900) Subject: Require libtzplatform-config explicitly X-Git-Tag: submit/tizen_3.0/20170106.143701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fsubmit%2Ftizen_3.0%2F20170106.143701;p=platform%2Fcore%2Fappfw%2Fapp2sd.git Require libtzplatform-config explicitly Until now, this package has been built using symbols in other packages indirectly. As static library is removed, it should require libtzplatform-config library in itself. Change-Id: I9a560e4d7cd970f4de13174fc450416272ce9c95 --- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index ff6e65e..9719afb 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ # Required packages -pkg_check_modules(test_pkgs REQUIRED dlog zlib minizip storage glib-2.0) +pkg_check_modules(test_pkgs REQUIRED dlog zlib minizip storage glib-2.0 libtzplatform-config) FOREACH(flag ${test_pkgs_CFLAGS}) SET(TEST_CFLAGS "${TEST_CFLAGS} ${flag}")