Zane Shelley | f80482a | 2020-12-02 15:13:13 -0600 | [diff] [blame] | 1 | # Source files. |
| 2 | util_src = files( |
| 3 | 'ffdc_file.cpp', |
| 4 | 'pdbg.cpp', |
| 5 | 'temporary_file.cpp', |
| 6 | ) |
| 7 | |
| 8 | # Library dependencies. |
| 9 | util_deps = [ |
| 10 | libhei_dep, |
| 11 | libpdbg_dep, |
| 12 | ] |
| 13 | |
| 14 | # Create static library. |
| 15 | util_lib = static_library( |
| 16 | 'util_lib', |
| 17 | util_src, |
| 18 | include_directories : incdir, |
| 19 | dependencies : util_deps, |
| 20 | cpp_args : test_arg, |
Zane Shelley | c252894 | 2020-12-02 15:42:42 -0600 | [diff] [blame] | 21 | install : false, |
Zane Shelley | f80482a | 2020-12-02 15:13:13 -0600 | [diff] [blame] | 22 | ) |
| 23 | |