From 6e6847a66bd6dbcc2bab377892872756dbdb16be Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Wed, 14 Sep 2022 19:12:51 +0200 Subject: [PATCH] Set more values in CMake project() --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 883654987..aab6b8a90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,10 @@ -cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs +cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url project(fastfetch VERSION 1.7.0 LANGUAGES C + DESCRIPTION "Fast system information tool" + HOMEPAGE_URL "https://github.com/LinusDierheimer/fastfetch" ) ################### @@ -438,11 +440,9 @@ endif() set(CPACK_SET_DESTDIR ON) set(CPACK_PACKAGE_CONTACT "Linus Dierheimer ") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Neofetch clone written in C") set(CPACK_PACKAGE_DESCRIPTION "\ fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way. \ It is written in c to achieve much better performance.\ ") -set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/LinusDierheimer") include(CPack)