Files
amnezia-client/CMakeLists.txt
T
vladimir.kuznetsov 005bb39e41 added version.h file generation
- deleted files for qmake
2023-03-08 18:00:32 +03:00

20 lines
358 B
CMake

cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR)
set(PROJECT AmneziaVPN)
set(BUILD_ID 1)
project(${PROJECT} VERSION 2.1.2
DESCRIPTION "AmneziaVPN"
HOMEPAGE_URL "https://amnezia.org/"
)
if(ANDROID)
set(QT_ANDROID_BUILD_ALL_ABIS ON)
endif()
add_subdirectory(client)
if(NOT IOS AND NOT ANDROID)
add_subdirectory(service)
endif()