加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
meson.build 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ed Tanous 提交于 2023-08-08 11:35 . Port to meson
project(
'phosphor-ipmi-bt',
'c',
version : '1.0',
meson_version: '>=1.1.1',
default_options: [
'b_lto_mode=default',
'b_lto_threads=0',
'b_lto=true',
'b_ndebug=if-release',
'warning_level=3',
'werror=true',
]
)
systemd = dependency('systemd')
libsystemd = dependency('libsystemd')
systemd_system_unit_dir = systemd.get_variable(
pkgconfig: 'systemdsystemunitdir'
)
executable(
'btbridged',
'btbridged.c',
dependencies: [
libsystemd,
],
install: true,
)
configure_file(
input: 'btbridged.service',
output: 'org.openbmc.HostIpmi.service',
install: true,
install_dir: systemd_system_unit_dir,
copy: true,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化