ssp/meson.build

16 lines
365 B
Meson
Raw 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-01-19 20:26:36 +01:00
subdir('test')