Zane Shelley | c252894 | 2020-12-02 15:42:42 -0600 | [diff] [blame] | 1 | # Source files. |
Zane Shelley | 6e36587 | 2020-10-23 22:00:05 -0500 | [diff] [blame] | 2 | analyzer_src = files( |
| 3 | 'analyzer_main.cpp', |
Zane Shelley | d3b9bac | 2020-11-17 21:59:12 -0600 | [diff] [blame] | 4 | 'create_pel.cpp', |
Zane Shelley | 6e36587 | 2020-10-23 22:00:05 -0500 | [diff] [blame] | 5 | 'hei_user_interface.cpp', |
Zane Shelley | f4bd5ff | 2020-11-05 22:26:04 -0600 | [diff] [blame] | 6 | 'initialize_isolator.cpp', |
Zane Shelley | 6e36587 | 2020-10-23 22:00:05 -0500 | [diff] [blame] | 7 | ) |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 8 | |
Zane Shelley | 61465db | 2020-10-30 14:53:11 -0500 | [diff] [blame] | 9 | # Library dependencies. |
| 10 | analyzer_deps = [ |
| 11 | dbus_interfaces_dep, |
| 12 | libhei_dep, |
| 13 | sdbusplus_dep, |
| 14 | ] |
| 15 | |
Zane Shelley | c252894 | 2020-12-02 15:42:42 -0600 | [diff] [blame] | 16 | # Create static library. |
| 17 | analyzer_lib = static_library( |
| 18 | 'analyzer_lib', |
| 19 | analyzer_src, |
| 20 | include_directories : incdir, |
| 21 | dependencies : analyzer_deps, |
| 22 | cpp_args : test_arg, |
| 23 | install : false, |
| 24 | ) |
| 25 | |