blob: 3a2faf4f94afe68a9f0378e30963085fd79cceb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
astal_auth = declare_dependency(
link_with : astal_auth_lib,
include_directories : astal_auth_inc)
deps_example = [
dependency('gobject-2.0'),
dependency('libbsd'),
astal_auth
]
astal_auth_full_exmple = executable(
'astal_auth_full_example',
files('full_example.c'),
dependencies : deps_example,
install : false)
astal_auth_simple_example = executable(
'astal_auth_simple_example',
files('simple_example.c'),
dependencies : deps_example,
install : false)
|