structure: make proper use of headers
crispy-caesus crispy@crispy-caesus.eu
Wed, 12 Aug 2026 20:10:08 +0200
3 files changed,
7 insertions(+),
4 deletions(-)
M
meson.build
→
meson.build
@@ -2,6 +2,8 @@ project(
'thing', 'c', default_options : - ['c_std=c99'] + ['c_std=c99', 'W=all'] ) -executable('thing', 'main.c') +term = library('thingterm', 'term.c') +menu = library('thingmenu', 'menu.c') +executable('thing', 'main.c', link_with: [term, menu])