summaryrefslogtreecommitdiff
path: root/meson.build
blob: ce57651e4b4aeb0c0c9cb129f7cbb7b2eeb03c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project(
        'c-rbtree',
        'c',
        version: '3',
        license: 'Apache',
        default_options: [
                'c_std=c11'
        ],
)
project_description = 'Intrusive Red-Black Tree Collection'

add_project_arguments('-D_GNU_SOURCE', language: 'c')
mod_pkgconfig = import('pkgconfig')

subdir('src')