mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
11 lines
189 B
CMake
11 lines
189 B
CMake
cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR)
|
|
|
|
set(PROJECT AmneziaVPN)
|
|
project(${PROJECT})
|
|
|
|
add_subdirectory(client)
|
|
|
|
if(NOT IOS AND NOT ANDROID)
|
|
add_subdirectory(service)
|
|
endif()
|