blob: c3010123a81639d6b9de314f7d82b218e442a48d [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# Copyright © 2023 Intel Corporation
project(
'Rust and C++',
'rust', 'cpp',
default_options : ['cpp_std=c++14'],
meson_version : '>= 1.2.0',
)
cpplib = static_library('cpp', 'lib.cpp')
exe = executable('main', 'main.rs', link_with : cpplib)
test('main', exe)