The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
310 B
15 lines
310 B
1 year ago
|
# 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)
|