xref: /openbmc/phosphor-host-ipmid/app/meson.build (revision 62ce1594fde138f073749e0bc56f6a4f1bb6b204)
1app_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)
13
14app_dep = declare_dependency(link_with: app_lib, dependencies: app_pre)
15