smeargle-gd/meson.build

16 lines
305 B
Meson
Raw Permalink Normal View History

2023-11-27 21:38:00 +00:00
project('smeargle', 'c',
version: '0.1'
)
libtoml_dep = dependency(
'libtoml',
fallback: ['libtoml', 'libtoml_dep'],
default_options: ['default_library=static']
)
exe = executable(
'smeargle',
2023-11-30 05:01:38 +00:00
['src/main.c', 'src/node.c', 'src/font.c', 'src/script.c'],
2023-11-27 21:38:00 +00:00
dependencies: libtoml_dep,
install: true
)