blob: 586b43ebc00d73c0f8f7caae16e265bb86bc5149 [file] [log] [blame]
Dhruvaraj Subhashchandran858d1aa2021-10-27 03:26:06 -05001# SPDX-License-Identifier: Apache-2.0
2
3cxx = meson.get_compiler('cpp')
4
5collect_deps = [
6 CLI11_dep,
7 phosphorlogging,
8 cxx.find_library('pdbg'),
9 cxx.find_library('libdt-api'),
10 cxx.find_library('phal'),
11]
12
13# source files
14
15collect_src = files(
16 'sbe_dump_collector.cpp',
17 'dump_collect_main.cpp',
18 'dump_utils.cpp',
Dhruvaraj Subhashchandran6feeebd2021-10-19 05:03:59 -050019 'create_pel.cpp',
20 'sbe_type.cpp',
Dhruvaraj Subhashchandran858d1aa2021-10-27 03:26:06 -050021)
22
23executable('dump-collect',
24 collect_src,
25 dependencies: collect_deps,
26 implicit_include_directories: true,
27 install: true
28)