# SPDX-License-Identifier: EUPL-1.2 # SPDX-FileCopyrightText: 2022 Alyssa Ross project('start-vm', 'rust', 'c', default_options : ['rust_std=2018', 'warning_level=3']) c_lib = static_library('start-vm-c', 'net.c', 'net-util.c', c_args : ['-D_GNU_SOURCE']) executable('start-vm', 'start-vm.rs', link_with : c_lib, install : true)