代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/fsearch 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
project('fsearch', 'c',
version: '0.2',
meson_version: '>= 0.45.0',
default_options: ['c_std=c11',
'channel=other',
],
)
app_id = 'io.github.cboxdoerfer.FSearch'
cc = meson.get_compiler('c')
gnome = import('gnome')
i18n = import('i18n')
have_malloc_trim = meson.get_compiler('c').has_function('malloc_trim')
config_h = configuration_data()
config_h.set('HAVE_MALLOC_TRIM', have_malloc_trim)
config_h.set_quoted('APP_ID', app_id)
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h.set_quoted('VERSION', meson.project_version())
config_h.set_quoted('GETTEXT_PACKAGE', 'fsearch')
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
config_h.set_quoted('PACKAGE_WEBSITE', 'https://github.com/cboxdoerfer/fsearch')
config_h.set_quoted('PACKAGE_ICON_NAME', app_id)
config_h.set_quoted('PACKAGE_NAME', 'FSearch')
config_h.set_quoted('BUILD_CHANNEL', get_option('channel'))
add_project_arguments('-DHAVE_CONFIG_H', language : 'c')
# ensure off_t is 64bit
add_project_arguments('-D_FILE_OFFSET_BITS=64', language : 'c')
fsearch_include_dirs = include_directories(
'.',
)
subdir('data')
subdir('src')
subdir('po')
configure_file(
output: 'config.h',
configuration: config_h,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。