1 Star 0 Fork 0

larryw3i/gratch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
meson.build 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
larryw3i 提交于 2022-05-08 19:02 +08:00 . z
project('gratch', 'c',
version: '0.1.0',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2',
'c_std=gnu11',
],
)
i18n = import('i18n')
gnome = import('gnome')
config_h = configuration_data()
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h.set_quoted('GETTEXT_PACKAGE', 'gratch')
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
configure_file(
output: 'gratch-config.h',
configuration: config_h,
)
add_project_arguments([
'-I' + meson.project_build_root(),
], language: 'c')
subdir('data')
subdir('src')
subdir('po')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/larryw3i/gratch.git
git@gitee.com:larryw3i/gratch.git
larryw3i
gratch
gratch
main

搜索帮助