Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
cmake_minimum_required(VERSION 3.15)
project(Buran VERSION 1.0.0)
project(Buran
VERSION 1.0.0
HOMEPAGE_URL https://github.com/dodoradio/Buran
DESCRIPTION "Buran is a Linux desktop synchronization application for AsteroidOS"
)
include(FetchContent)
FetchContent_Declare(
asteroidsyncservice
Expand All @@ -14,3 +18,11 @@ configure_file(
"buran_config.h"
)
add_subdirectory(src)
set(CPACK_GENERATOR "DEB;RPM")
set(CPACK_PACKAGE_VENDOR "dodoradio")
set(CPACK_PACKAGE_CONTACT "dodoradio@outlook.com")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
set(CPACK_RPM_PACKAGE_LICENSE "GPLv3")
set(CPACK_STRIP_FILES TRUE)
include(CPack)
Loading