xref: /openbmc/openpower-hw-diags/util/meson.build (revision f80482a5017a898ee69fec57d15a6201a6fcbbd5)
1*f80482a5SZane Shelley# Source files.
2*f80482a5SZane Shelleyutil_src = files(
3*f80482a5SZane Shelley    'ffdc_file.cpp',
4*f80482a5SZane Shelley    'pdbg.cpp',
5*f80482a5SZane Shelley    'temporary_file.cpp',
6*f80482a5SZane Shelley)
7*f80482a5SZane Shelley
8*f80482a5SZane Shelley# Library dependencies.
9*f80482a5SZane Shelleyutil_deps = [
10*f80482a5SZane Shelley    libhei_dep,
11*f80482a5SZane Shelley    libpdbg_dep,
12*f80482a5SZane Shelley]
13*f80482a5SZane Shelley
14*f80482a5SZane Shelley# Create static library.
15*f80482a5SZane Shelleyutil_lib = static_library(
16*f80482a5SZane Shelley    'util_lib',
17*f80482a5SZane Shelley    util_src,
18*f80482a5SZane Shelley    include_directories : incdir,
19*f80482a5SZane Shelley    dependencies : util_deps,
20*f80482a5SZane Shelley    cpp_args : test_arg,
21*f80482a5SZane Shelley    install : false
22*f80482a5SZane Shelley)
23*f80482a5SZane Shelley
24