加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
meson.build 463 Bytes
一键复制 编辑 原始数据 按行查看 历史
Patrick Williams 提交于 2023-07-17 10:07 . build: upgrade to C++23
project(
'sdeventplus',
'cpp',
version: '0.1',
meson_version: '>=1.1.1',
default_options: [
'warning_level=3',
'cpp_std=c++23',
'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
'examples=' + (meson.is_subproject() ? 'false' : 'true'),
])
subdir('src')
build_tests = get_option('tests')
build_examples = get_option('examples')
if build_examples
subdir('example')
endif
if not build_tests.disabled()
subdir('test')
endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化