blob: 5e89b27834c000d3cf6c7f7ee7522778c716cf72 [file] [log] [blame]
Willy Tuc710b972021-08-11 16:33:43 -07001app_inc = include_directories('.')
2
3app_pre = declare_dependency(include_directories: [root_inc, app_inc])
4
5app_lib = static_library(
6 'app',
7 'channel.cpp',
8 'watchdog.cpp',
9 'watchdog_service.cpp',
10 implicit_include_directories: false,
11 dependencies: app_pre)
12
13app_dep = declare_dependency(
14 link_with: app_lib,
15 dependencies: app_pre)