You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
467 B

project('large-yaml-test', 'c',
version : '0.1',
default_options: [
'warning_level=3',
'buildtype=debugoptimized',
'c_std=gnu11',
])
add_global_arguments (
'-DOPTIMIZATION=' + get_option ('optimization'),
language: 'c')
cyaml_dep = dependency(
'libcyaml', version: '>=1.2.0',
fallback: ['libcyaml', 'zrythm_cyaml_dep'])
executable('large-yaml-test',
'main.c',
dependencies: [cyaml_dep],
install : true)