mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 17:23:23 -05:00
11 lines
246 B
Meson
11 lines
246 B
Meson
project('toml-c', 'c', version: '1.0.0')
|
|
|
|
toml_lib = static_library('toml',
|
|
'toml.c',
|
|
include_directories: include_directories('.')
|
|
)
|
|
|
|
toml_dep = declare_dependency(
|
|
include_directories: include_directories('.'),
|
|
link_with: toml_lib
|
|
) |