parent
653853062f
commit
d39bda76c4
@ -1,21 +1,16 @@
|
||||
deps = [
|
||||
cairo,
|
||||
pango,
|
||||
pangocairo,
|
||||
wlroots,
|
||||
wayland_client,
|
||||
]
|
||||
|
||||
if gdk_pixbuf.found()
|
||||
deps += [gdk_pixbuf]
|
||||
endif
|
||||
|
||||
lib_sway_client = static_library(
|
||||
'sway-client',
|
||||
files(
|
||||
'buffer-pool.c',
|
||||
'pool-buffer.c',
|
||||
),
|
||||
dependencies: deps,
|
||||
dependencies: [
|
||||
cairo,
|
||||
gdk_pixbuf,
|
||||
pango,
|
||||
pangocairo,
|
||||
wlroots,
|
||||
wayland_client,
|
||||
],
|
||||
link_with: [lib_sway_common],
|
||||
include_directories: sway_inc
|
||||
)
|
||||
|
@ -0,0 +1 @@
|
||||
configure_file(output: 'config.h', configuration: conf_data)
|
@ -1,22 +1,18 @@
|
||||
deps = [
|
||||
cairo,
|
||||
jsonc,
|
||||
math,
|
||||
pango,
|
||||
pangocairo,
|
||||
sway_protos,
|
||||
wayland_client,
|
||||
]
|
||||
|
||||
if gdk_pixbuf.found()
|
||||
deps += [gdk_pixbuf]
|
||||
endif
|
||||
|
||||
executable(
|
||||
'swaybg',
|
||||
'main.c',
|
||||
include_directories: [sway_inc],
|
||||
dependencies: deps,
|
||||
link_with: [lib_sway_common, lib_sway_client],
|
||||
install: true
|
||||
'swaybg',
|
||||
'main.c',
|
||||
include_directories: [sway_inc],
|
||||
dependencies: [
|
||||
cairo,
|
||||
gdk_pixbuf,
|
||||
jsonc,
|
||||
math,
|
||||
pango,
|
||||
pangocairo,
|
||||
sway_protos,
|
||||
wayland_client,
|
||||
wlroots,
|
||||
],
|
||||
link_with: [lib_sway_common, lib_sway_client],
|
||||
install: true
|
||||
)
|
||||
|
Loading…
Reference in new issue