about summary refs log tree commit diff
path: root/meson.build
blob: 54677a808d5c67ed1aa3e2f6c1fb4b916a2b0661 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>
# SPDX-License-Identifier: EUPL-1.2

project('hydrasect', 'rust', 'c',
  default_options : ['rust_std=2021', 'warning_level=3'])

c_lib = static_library('hydrasect', 'tmpfd.c')

executable('hydrasect-search', 'hydrasect-search.rs', install : true)

test('Rust unit tests', executable('hydrasect-search-test', 'hydrasect-search.rs',
  link_with : c_lib,
  rust_args : '--test'))