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( |
Patrick Williams | 62ce159 | 2025-02-03 14:12:56 -0500 | [diff] [blame] | 6 | 'app', |
| 7 | 'channel.cpp', |
| 8 | 'watchdog.cpp', |
| 9 | 'watchdog_service.cpp', |
| 10 | implicit_include_directories: false, |
| 11 | dependencies: app_pre, |
| 12 | ) |
Willy Tu | c710b97 | 2021-08-11 16:33:43 -0700 | [diff] [blame] | 13 | |
Patrick Williams | 62ce159 | 2025-02-03 14:12:56 -0500 | [diff] [blame] | 14 | app_dep = declare_dependency(link_with: app_lib, dependencies: app_pre) |