diff options
author | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-06 10:30:22 +0800 |
---|---|---|
committer | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-06 10:30:22 +0800 |
commit | a974f96ac49bc4d354280d8352cb0d6afb68d9dc (patch) | |
tree | 938dac921c43cb9e70fde90b71d134c6ff1bcc5d | |
parent | 28768d7c7feb7b054b8d53b6b9ce3ed01e4b8c6f (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: I032a9f0a8893f4cd781ba6728e7ef8ac411cad9e
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 0b9515b..86d6ca9 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -22,6 +22,7 @@ set(PROJECT_NAME agl-service-bluetooth) set(PROJECT_VERSION "2.0") set(PROJECT_PRETTY_NAME "Bluetooth-Manager service") set(PROJECT_DESCRIPTION "Interface BlueZ through AGL Framework service") +set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/admin/repos/apps/agl-service-bluetooth") set(PROJECT_ICON "icon.png") set(PROJECT_AUTHOR "Matt Ranostay") set(PROJECT_AUTHOR_MAIL "matt.ranostay@konsulko.com") |