1# The Mapper 2 3This repository contains the mapper, which assists in finding things on D-Bus. 4There is documentation about it [here][1]. 5 6## Prerequisites 7 8Non-OpenBMC build dependencies are: 9 10- meson/ninja 11- boost 12- libsystemd 13- systemd 14- tinyxml2 15 16## Build 17 18`meson build && ninja -C build` 19 20## Run Unit Tests 21 22`meson build && ninja -C build test` 23 24## Clean the repository 25 26`rm -rf build` 27 28[1]: https://github.com/openbmc/docs/blob/master/architecture/object-mapper.md 29