Files
amnezia-client/CMakeLists.txt
T

15 lines
248 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR)
set(PROJECT AmneziaVPN)
project(${PROJECT})
2023-01-10 13:19:19 +03:00
if(ANDROID)
set(QT_ANDROID_BUILD_ALL_ABIS ON)
endif()
2022-12-27 15:37:58 +03:00
2022-11-09 23:17:33 +03:00
add_subdirectory(client)
2022-11-15 23:31:55 +03:00
if(NOT IOS AND NOT ANDROID)
add_subdirectory(service)
endif()