smeargle-gd/meson.build

16 lines
259 B
Meson

project('smeargle', 'c',
version: '0.1'
)
libtoml_dep = dependency(
'libtoml',
fallback: ['libtoml', 'libtoml_dep'],
default_options: ['default_library=static']
)
exe = executable(
'smeargle',
'src/main.c',
dependencies: libtoml_dep,
install: true
)