blob: cac287a5fc4e79abe1f02edc8df55c3fe7e72440 (
plain) (
tree)
|
|
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',
'-Wvla',
],
language: 'c',
)
cjson_dep = dependency('libcjson')
evanix_inc = include_directories('include')
subdir('src')
|