Files
amnezia-client/conanfile.py
T

17 lines
539 B
Python
Raw Normal View History

2026-02-23 00:55:11 +01:00
from conan import ConanFile
class AmneziaVPN(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeDeps"
def requirements(self):
2026-02-24 11:51:18 +01:00
os = str(self.settings.os)
arch = str(self.settings.arch)
if os == "Windows" or os == "Linux" or (os == "Macos" and arch == "x86_64"):
self.requires("amnezia-xray-bindings/1.1.0")
self.requires("awg-go/0.2.16")
if os == "iOS" or (os == "Macos" and arch == "arm64"):
self.requires("awg-apple/2.0.1")