summaryrefslogtreecommitdiff
path: root/shared/c-stdaux/meson.build
blob: 6843e284d48d897e9c7fe25a710f689f43ce8c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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')