build: Add wrap file for tinyxml2

Currently local build on the system without tinyxml2 can fail with
the following message:
"""
meson.build:107:8: ERROR: Dependency "tinyxml2" not found, tried
pkgconfig and cmake
"""
Provide "tinyxml2.wrap" file to fix the issue.
The "tinyxml2.wrap" file is copied from the bmcweb repository.

Change-Id: I652cae42192affd6513d1e148e4b4a177e00999d
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
1 file changed
tree: bbb7f2681bea9b80d28505da4122fc5a45a41ed0
  1. fail-monitor/
  2. libmapper/
  3. src/
  4. subprojects/
  5. .clang-format
  6. .gitignore
  7. LICENSE
  8. meson.build
  9. meson.options
  10. OWNERS
  11. README.md
README.md

The Mapper

This repository contains the mapper, which assists in finding things on D-Bus. There is documentation about it here.

Prerequisites

Non-OpenBMC build dependencies are:

  • meson/ninja
  • boost
  • libsystemd
  • systemd
  • tinyxml2

Build

meson build && ninja -C build

Run Unit Tests

meson build && ninja -C build test

Clean the repository

rm -rf build