Willy Tu | c710b97 | 2021-08-11 16:33:43 -0700 | [diff] [blame] | 1 | app_inc = include_directories('.') |
2 | |||||
3 | app_pre = declare_dependency(include_directories: [root_inc, app_inc]) | ||||
4 | |||||
5 | app_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 | |||||
13 | app_dep = declare_dependency( | ||||
14 | link_with: app_lib, | ||||
15 | dependencies: app_pre) |