duckticker/meson.build
King_DuckZ 1d61cc7f2f First implementation
It seems to work but I think the ticker value returned
by the remote call is wrong. Maybe I'm calling the wrong
endpoint ¯\_(ツ)_/¯ I don't know trying to work it out
2022-05-12 23:40:27 +02:00

15 lines
448 B
Meson

project('duckticker', 'cpp',
version: '0.1.0',
meson_version: '>=0.55.0',
default_options: ['buildtype=debug', 'cpp_std=c++20', 'b_ndebug=if-release'],
license: 'GPL3+',
)
full_config_dir = get_option('prefix') / get_option('sysconfdir')
compiler_opts = ['-DWRENPP_WITH_NAME_GUESSING']
subdir('src')
#if meson.source_root() != full_config_dir
# install_data(sources: meson.project_name() + '.conf', install_dir: full_config_dir)
#endif