blob: af6fdf37b987e46096f8103f80a9cdbf9af574b4 [file] [log] [blame]
# Source files
watchdog_src = files(
'watchdog_dbus.cpp',
'watchdog_logging.cpp',
'watchdog_handler.cpp',
'watchdog_common.cpp',
'watchdog_main.cpp',
'utils.cpp',
'ffdc_file.cpp',
)
# Library dependencies
watchdog_deps = [
sdbusplus_dep
]
# Create static library
watchdog_lib = static_library(
'watchdog_lib',
watchdog_src,
dependencies: watchdog_deps,
install: false,
)