font-catcher 1.2.2

A command line font package manager. To see more commands, run `font-catcher --help`
font_catcher_sources = [
  cargo_sources,
  'main.rs',
]

font_catcher_deps = [
]

cargo_script = find_program(join_paths(meson.source_root(), 'build-aux/cargo.sh'))
cargo_release = custom_target(
  'cargo-build',
  build_by_default: true,
  input: font_catcher_sources,
  output: meson.project_name(),
  console: true,
  install: true,
  install_dir: get_option('bindir'),
  command: [
    cargo_script,
    meson.build_root(),
    meson.source_root(),
    '@OUTPUT@',
    get_option('buildtype'),
    meson.project_name(),
  ]
)