1# Source files 2watchdog_src = files( 3 'watchdog_dbus.cpp', 4 'watchdog_logging.cpp', 5 'watchdog_handler.cpp', 6 'watchdog_common.cpp', 7 'watchdog_main.cpp', 8 'utils.cpp', 9 'ffdc_file.cpp', 10) 11 12# Library dependencies 13watchdog_deps = [ 14 sdbusplus 15] 16 17# Create static library 18watchdog_lib = static_library( 19 'watchdog_lib', 20 watchdog_src, 21 dependencies: watchdog_deps, 22 install: false, 23) 24