# OpenVPN 3 Linux - Next generation OpenVPN # # SPDX-License-Identifier: AGPL-3.0-only # # Copyright (C) 2024- OpenVPN Inc # Copyright (C) 2024- David Sommerseth configure_file( input: 'pyproject.toml.in', output: 'pyproject.toml', configuration: configuration_data( { 'VERSION': meson.project_version(), } ), ) subdir('openvpn3') custom_target('openvpn2', input: 'openvpn2', output: 'openvpn2', command: [cp_prog, '@INPUT@', '@OUTPUT@'], install: true, install_dir: get_option('prefix') / get_option('bindir'), ) custom_target('openvpn3-as', input: 'openvpn3-as', output: 'openvpn3-as', command: [cp_prog, '@INPUT@', '@OUTPUT@'], install: true, install_dir: get_option('prefix') / get_option('bindir'), ) custom_target('openvpn3-autoload', input: 'openvpn3-autoload', output: 'openvpn3-autoload', command: [cp_prog, '@INPUT@', '@OUTPUT@'], install: true, install_dir: get_option('prefix') / get_option('sbindir'), )