ssp/meson.build

18 lines
402 B
Meson
Raw Permalink Normal View History

2021-01-19 20:26:36 +01:00
project('ssp', 'cpp',
default_options :
['warning_level=3',
'cpp_std=c++17',
2021-01-23 21:39:18 +01:00
'buildtype=debugoptimized'])
2021-01-19 20:26:36 +01:00
fast_float_sub = subproject('fast_float')
fast_float_dep = fast_float_sub.get_variable('fast_float_dep')
ssp_dep = declare_dependency(
include_directories: include_directories('include'),
dependencies: fast_float_dep
)
2021-02-07 13:02:35 +01:00
if not meson.is_subproject()
subdir('test')
endif