1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
zoom_sources = [
'ephy-zoom-action.h',
'ephy-zoom-action.c',
'ephy-zoom-control.c',
'ephy-zoom-control.h',
'ephy-zoom.c',
'ephy-zoom.h',
]
zoom_deps = [
config_h,
glib,
gtk,
math
]
libephyzoom = static_library(
'ephyzoom',
zoom_sources,
include_directories: include_root,
dependencies: zoom_deps,
)
libephyzoom_dep = declare_dependency(
link_with: libephyzoom,
include_directories: [include_root, include_directories('.')],
dependencies: zoom_deps,
)
|