Files
NetworkManager/shared/c-siphash/meson.build
Iñigo Martínez 35171b3c3f build: meson: Add trailing commas
Add missing trailing commas that avoids getting noise when another
file/parameter is added and eases reviewing changes[0].

[0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
2018-12-20 13:50:34 +01:00

15 lines
266 B
Meson

project(
'c-siphash',
'c',
version: '1',
license: 'Apache',
default_options: [
'c_std=c11',
]
)
add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')
subdir('src')