blob: 1258b1fb1e08dcda2035403f5b8a562e3b6b38dd [file] [log] [blame]
Zane Shelleyf80482a2020-12-02 15:13:13 -06001# Source files.
2util_src = files(
3 'ffdc_file.cpp',
4 'pdbg.cpp',
5 'temporary_file.cpp',
6)
7
8# Library dependencies.
9util_deps = [
10 libhei_dep,
11 libpdbg_dep,
12]
13
14# Create static library.
15util_lib = static_library(
16 'util_lib',
17 util_src,
18 include_directories : incdir,
19 dependencies : util_deps,
20 cpp_args : test_arg,
Zane Shelleyc2528942020-12-02 15:42:42 -060021 install : false,
Zane Shelleyf80482a2020-12-02 15:13:13 -060022)
23