This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
ics_cli/src/meson.build

6 lines
307 B
Meson
Raw Normal View History

2024-11-17 09:26:32 +01:00
project('ics_cli', 'c')
executable('icscli', 'main.c', 'cli_arg_parsing.c', 'date_time_handling.c', 'insert_event.c', \
'list_handling.c', 'parse_ics.c', 'read_until_nl.c', 'read_until_string.c', 'seek_string_a.c', \
2024-11-17 17:35:52 +01:00
'string_handling.c', link_args : '-luuid', install: true, install_dir: '/usr/local/bin')