Files
NetworkManager/shared/c-stdaux/meson.build
Thomas Haller 5eab3c9987 shared/c-stdaux: merge initial import of 'shared/c-stdaux'
Imported c-stdaux code with command:

  git subtree add --prefix shared/c-stdaux git@github.com:c-util/c-stdaux.git master --squash

To update the library use:

  git subtree pull --prefix shared/c-stdaux git@github.com:c-util/c-stdaux.git master --squash
2019-04-14 11:45:49 +02:00

16 lines
347 B
Meson

project(
'c-stdaux',
'c',
version: '1',
license: 'Apache',
default_options: [
'c_std=c11'
],
)
project_description = 'Auxiliary macros and functions for the C standard library'
add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')
subdir('src')