blob: 51ad78e2957a51c362fe5965ca104683a6ad2d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
OpenLMI test provider
1. Build dependencies
- konkretcmpi-devel
- openlmi-providers-devel
- sblim-cmpi-devel
- cim-schema
2. How to build and install the provider
# create a separate build directory
mkdir build
cd build
# create makefile with cmake
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr /path/to/source
# build library
make
# install
sudo make install
# register provider with OpenLMI
sudo make register-Test
|