meson.build (e5411f0f4d862fac11a9a32cac058a438ef5ed54) | meson.build (5191bae9d11562c826c6c1f719815548894def3a) |
---|---|
1# Source files. 2analyzer_src = files( 3 'analyzer_main.cpp', 4 'apply_ras_actions.cpp', 5 'create_pel.cpp', 6 'hei_user_interface.cpp', 7 'initialize_isolator.cpp', 8 'resolution.cpp', 9) 10 11# Library dependencies. 12analyzer_deps = [ 13 dbus_interfaces_dep, 14 libhei_dep, | 1# Source files. 2analyzer_src = files( 3 'analyzer_main.cpp', 4 'apply_ras_actions.cpp', 5 'create_pel.cpp', 6 'hei_user_interface.cpp', 7 'initialize_isolator.cpp', 8 'resolution.cpp', 9) 10 11# Library dependencies. 12analyzer_deps = [ 13 dbus_interfaces_dep, 14 libhei_dep, |
15 nlohmann_json_dep, |
|
15 sdbusplus_dep, | 16 sdbusplus_dep, |
17 valijson_dep, |
|
16] 17 18# Create static library. 19analyzer_lib = static_library( 20 'analyzer_lib', 21 analyzer_src, 22 include_directories : incdir, 23 dependencies : analyzer_deps, 24 cpp_args : [ package_args, test_arg ], 25 install : false, 26) 27 28# Install the RAS data files. 29subdir('ras-data') 30 | 18] 19 20# Create static library. 21analyzer_lib = static_library( 22 'analyzer_lib', 23 analyzer_src, 24 include_directories : incdir, 25 dependencies : analyzer_deps, 26 cpp_args : [ package_args, test_arg ], 27 install : false, 28) 29 30# Install the RAS data files. 31subdir('ras-data') 32 |