3 Star 0 Fork 0

Gitee 极速下载 / swaybg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/swaywm/swaybg
克隆/下载
meson.build 3.02 KB
一键复制 编辑 原始数据 按行查看 历史
project(
'swaybg',
'c',
version: '1.2.0',
license: 'MIT',
meson_version: '>=0.59.0',
default_options: [
'c_std=c11',
'warning_level=2',
'werror=true',
],
)
add_project_arguments(
[
'-Wno-unused-parameter',
'-Wno-unused-result',
'-Wundef',
'-Wvla',
],
language: 'c',
)
is_freebsd = host_machine.system().startswith('freebsd')
if is_freebsd
add_project_arguments('-D_C11_SOURCE', language: 'c')
endif
cc = meson.get_compiler('c')
rt = cc.find_library('rt')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.26')
wayland_scanner = dependency('wayland-scanner', version: '>=1.14.91', native: true)
cairo = dependency('cairo')
gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))
git = find_program('git', required: false, native: true)
scdoc = find_program('scdoc', required: get_option('man-pages'), native: true)
version = '"@0@"'.format(meson.project_version())
if git.found()
git_commit_hash = run_command([git, 'describe', '--always', '--tags'], check: false)
git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false)
if git_commit_hash.returncode() == 0 and git_branch.returncode() == 0
version = '"@0@ (" __DATE__ ", branch \'@1@\')"'.format(git_commit_hash.stdout().strip(), git_branch.stdout().strip())
endif
endif
add_project_arguments([
'-DSWAYBG_VERSION=@0@'.format(version),
'-DHAVE_GDK_PIXBUF=@0@'.format(gdk_pixbuf.found().to_int()),
], language: 'c')
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
wayland_scanner_prog = find_program(wayland_scanner.get_variable('wayland_scanner'), native: true)
wayland_scanner_code = generator(
wayland_scanner_prog,
output: '@BASENAME@-protocol.c',
arguments: ['private-code', '@INPUT@', '@OUTPUT@'],
)
wayland_scanner_client = generator(
wayland_scanner_prog,
output: '@BASENAME@-client-protocol.h',
arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
)
protos_src = []
client_protocols = [
wl_protocol_dir / 'stable/xdg-shell/xdg-shell.xml',
wl_protocol_dir / 'stable/viewporter/viewporter.xml',
wl_protocol_dir / 'staging/single-pixel-buffer/single-pixel-buffer-v1.xml',
'wlr-layer-shell-unstable-v1.xml',
]
foreach filename : client_protocols
protos_src += wayland_scanner_code.process(filename)
protos_src += wayland_scanner_client.process(filename)
endforeach
executable(
'swaybg',
[
'background-image.c',
'cairo.c',
'log.c',
'main.c',
'pool-buffer.c',
protos_src,
],
include_directories: 'include',
dependencies: [
cairo,
rt,
gdk_pixbuf,
wayland_client,
],
install: true
)
if scdoc.found()
mandir = get_option('mandir')
man_files = [
'swaybg.1.scd',
]
foreach filename : man_files
topic = filename.split('.')[-3].split('/')[-1]
section = filename.split('.')[-2]
output = '@0@.@1@'.format(topic, section)
custom_target(
output,
input: filename,
output: output,
command: scdoc,
feed: true,
capture: true,
install: true,
install_dir: '@0@/man@1@'.format(mandir, section)
)
endforeach
endif
C/C++
1
https://gitee.com/mirrors/swaybg.git
git@gitee.com:mirrors/swaybg.git
mirrors
swaybg
swaybg
master

搜索帮助