diff options
author | hj kim <backto.kim@samsung.com> | 2018-10-31 15:06:58 +0900 |
---|---|---|
committer | hj kim <backto.kim@samsung.com> | 2018-10-31 15:18:53 +0900 |
commit | c3474cc51a14ea60a91a888a9b108180c5e0a23d (patch) | |
tree | 16e78fc07fb4581dcd226efd604bfb18c9acc73c | |
parent | c4f9914f86d75f7bba327610dc031716ccc2f8c2 (diff) | |
download | media-controller-c3474cc51a14ea60a91a888a9b108180c5e0a23d.tar.gz media-controller-c3474cc51a14ea60a91a888a9b108180c5e0a23d.tar.bz2 media-controller-c3474cc51a14ea60a91a888a9b108180c5e0a23d.zip |
Fix wrong PC_REQUIREDsubmit/tizen/20181105.235320accepted/tizen/unified/20181107.081915
Change-Id: I7e73ae9c7ea3baa0b256d0e9c57edcf8c0cae94c
-rwxr-xr-x | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9723bd0..72fb55f 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,9 +23,11 @@ SET(description "A Media Controller library in Tizen Native API") SET(service "media") SET(submodule "controller") +SET(fw_name "${project_prefix}-${service}-${submodule}") + # for package file SET(dependents "capi-base-common glib-2.0 gio-2.0 dlog sqlite3 db-util aul bundle libtzplatform-config cynara-client cynara-session cynara-creds-socket uuid") -SET(fw_name "${project_prefix}-${service}-${submodule}") +SET(pc_dependents "capi-base-common") PROJECT(${fw_name}) @@ -79,7 +81,7 @@ INSTALL( ) SET(PC_NAME ${fw_name}) -SET(PC_REQUIRED ${dependents}) +SET(PC_REQUIRED ${pc_dependents}) SET(PC_LDFLAGS -l${fw_name}) SET(PC_CFLAGS -I\${includedir}/${service}) |