
License is missing in meson build files. This has been added using SPDX identifiers and licensed under LGPL-2.1+.
18 lines
385 B
Meson
18 lines
385 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
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')
|