From c322256138a6286e02ba4d9283fe4ad16794ec6a Mon Sep 17 00:00:00 2001 From: Joker2770 <1214220480@qq.com> Date: Fri, 12 Jul 2024 20:21:03 +0800 Subject: [PATCH] style: Update HOMEPAGE_URL in CMakeLists.txt (#44) The value for the key of HOMEPAGE_URL is url-string type. ```cmake project( [VERSION [.[.[.]]]] [DESCRIPTION ] [HOMEPAGE_URL ] [LANGUAGES ...]) ``` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9fe616a..f141a72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ project ( # Some informational package metadata. Not necessary for the build. # Sets PROJECT_HOMEPAGE_URL and PROJECT_DESCRIPTION - HOMEPAGE_URL https://github.com/herzbube/libsgfcplusplus + HOMEPAGE_URL "https://github.com/herzbube/libsgfcplusplus" DESCRIPTION "A C++ library that uses SGFC to read and write SGF (Smart Game Format) data." )