audrey/meson.build

70 lines
1.6 KiB
Meson
Raw Normal View History

2024-10-15 20:51:13 +00:00
project(
'audrey',
2024-10-29 09:48:40 +00:00
'c',
2024-10-15 20:51:13 +00:00
version: '0.1.0', # AUDREY_VERSION
meson_version: '>= 1.0.0',
default_options: ['warning_level=0', 'werror=false'],
2024-10-06 11:21:53 +00:00
)
i18n = import('i18n')
gnome = import('gnome')
2024-10-29 10:37:15 +00:00
fs = import('fs')
cc = meson.get_compiler('c')
2024-10-06 11:21:53 +00:00
srcdir = meson.project_source_root() / 'src'
config_h = configuration_data()
2024-10-15 20:51:13 +00:00
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
2024-10-12 20:52:29 +00:00
config_h.set_quoted('GETTEXT_PACKAGE', 'audrey')
2024-10-06 11:21:53 +00:00
config_h.set_quoted('LOCALEDIR', get_option('prefix') / get_option('localedir'))
configure_file(output: 'config.h', configuration: config_h)
config_inc = include_directories('.')
2024-10-15 20:51:13 +00:00
add_project_arguments(
[
'-DGETTEXT_PACKAGE="' + meson.project_name() + '"',
'-DG_LOG_DOMAIN="audrey"',
],
2024-10-15 20:51:13 +00:00
language: 'c',
)
2024-10-06 11:21:53 +00:00
add_project_arguments(
2024-10-18 00:39:17 +00:00
cc.get_supported_arguments(
['-Wno-tautological-pointer-compare', '-Wno-unused-value'],
),
language: 'c',
)
2024-10-06 11:21:53 +00:00
subdir('data')
subdir('po')
2024-10-29 10:46:58 +00:00
subdir('resources')
subdir('src')
2024-10-06 11:21:53 +00:00
2024-10-29 10:37:15 +00:00
cargo = find_program('cargo')
# TODO: cargo release build
custom_target(
'cargo-build',
build_by_default: true,
build_always_stale: true,
2024-10-29 10:46:58 +00:00
depends: [
audrey_c,
blueprints,
],
2024-10-29 10:37:15 +00:00
output: meson.project_name(),
command: [
'env',
'CARGO_HOME=' + meson.project_build_root() / 'cargo-home',
'RUSTFLAGS=-L ' + fs.parent(audrey_c.full_path()),
2024-10-29 10:46:58 +00:00
'MESON_BUILD_ROOT=' + meson.project_build_root(),
2024-10-29 10:37:15 +00:00
cargo,
'build',
'--manifest-path', meson.project_source_root() / 'Cargo.toml',
'--target-dir', meson.project_build_root() / 'cargo-target',
'&&',
'cp',
'cargo-target' / 'debug' / meson.project_name(),
'@OUTPUT@',
],
2024-10-06 11:21:53 +00:00
)