2022-11-07 23:59:09 +03:00
|
|
|
cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR)
|
|
|
|
|
|
|
|
|
|
set(PROJECT AmneziaVPN)
|
|
|
|
|
project(${PROJECT})
|
|
|
|
|
|
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()
|