diff options
author | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-06 10:51:42 +0800 |
---|---|---|
committer | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-06 10:51:42 +0800 |
commit | 7453d6e3c1220be6b6bbda71dd3af003a35db24d (patch) | |
tree | f5f333348372d402ff7beb15d273f357d8e9ed7a | |
parent | 0409394b97bc6818967455c1adf643423cbf8fce (diff) |
fix(confg.cmake): set PROJECT_URL to slience CMake warning
CMake Warning at /xdt/sdk/sysroots/x86_64-aglsdk-linux/usr/share/
cmake-3.12/Modules/CMakeAfbTemplates/cmake/cmake.d/
02-variables.cmake:98 (message):
No homepage url found. Please set a PROJECT_URL cmake variable in
your config.cmake.
Call Stack (most recent call first):
/xdt/sdk/sysroots/x86_64-aglsdk-linux/usr/share/cmake-3.12/Modules/
CMakeAfbTemplates/cmake/common.cmake:101 (include)
/xdt/sdk/sysroots/x86_64-aglsdk-linux/usr/share/cmake-3.12/Modules/
CMakeAfbTemplates.cmake:19 (include)
conf.d/cmake/config.cmake:166 (include)
CMakeLists.txt:21 (include)
Bug-AGL: SPEC-2804
Change-Id: Iad7cc6476d2e07629299edc1bae092a533065a46
Signed-off-by: Li Xiaoming <lixm.fnst@cn.fujitsu.com>
-rw-r--r-- | conf.d/cmake/config.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 1c5a020..18966a6 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -21,6 +21,7 @@ set(PROJECT_NAME agl-service-bluetooth-pbap) set(PROJECT_PRETTY_NAME "AFM binding for BT PBAP") set(PROJECT_DESCRIPTION "Binding for Bluetooth Phonebook Access Profile") +set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/admin/repos/apps/agl-service-bluetooth-pbap") set(PROJECT_VERSION "1.0") set(PROJECT_ICON "icon.png") set(PROJECT_AUTHOR "Last Name, First Name") |