blob: c0ce1f681819e5283beb249279da9fc748b000d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
lib_sway_common = static_library(
'sway-common',
files(
'cairo.c',
'gesture.c',
'ipc-client.c',
'log.c',
'loop.c',
'list.c',
'pango.c',
'stringop.c',
'util.c'
),
dependencies: [
cairo,
pango,
pangocairo,
wayland_client.partial_dependency(compile_args: true)
],
include_directories: sway_inc
)
|