feature/versioning-for-desktop (#181)

Project refactoring and cleanup
This commit is contained in:
Nethius 2023-05-16 07:34:06 +07:00 committed by GitHub
parent 8a8d38a30f
commit 19c42490e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
63 changed files with 252 additions and 2638 deletions

View file

@ -1,7 +1,13 @@
cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR)
set(PROJECT AmneziaVPN)
project(${PROJECT})
project(${PROJECT} VERSION 3.0.7.1
DESCRIPTION "AmneziaVPN"
HOMEPAGE_URL "https://amnezia.org/"
)
set(RELEASE_DATE "2023-05-15")
set(APP_MAJOR_VERSION ${CMAKE_PROJECT_VERSION_MAJOR}.${CMAKE_PROJECT_VERSION_MINOR}.${CMAKE_PROJECT_VERSION_PATCH})
if(ANDROID)
set(QT_ANDROID_BUILD_ALL_ABIS ON)
@ -15,4 +21,6 @@ add_subdirectory(client)
if(NOT IOS AND NOT ANDROID)
add_subdirectory(service)
include(${CMAKE_SOURCE_DIR}/deploy/installer/config.cmake)
endif()