summaryrefslogblamecommitdiff
path: root/meson.build
blob: 38f78d7c9c40cd5094a3922c35c167962d845d51 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                  
                                            
                                








                                           
project(
        'evanix',
        'c',
        version : '0.1',
        license: 'GPL-3.0-only',
        default_options : [
                'c_std=c99',
                'warning_level=2',
        ]
)

add_project_arguments(
	[
                '-D_POSIX_C_SOURCE=200809L',
                '-D_GNU_SOURCE',
		'-Wvla',
	],
	language: 'c',
)

cjson_dep = dependency('libcjson')
evanix_inc = include_directories('include')

subdir('src')