]> git.proxmox.com Git - ceph.git/blame - ceph/examples/librados/hello_world.readme
update source to 12.2.11
[ceph.git] / ceph / examples / librados / hello_world.readme
CommitLineData
7c673cae
FG
1This simple librados program can be built by running "make" (and cleaned up
2with "make clean"), assuming you have librados-dev already installed.
3
4By default, the makefile will build against the librados headers and library in your
5build tree (ie. using relative paths). If you would like to build the examples against
6your system librados and headers, use "make all-system".
7
8And executed using
f64942e4 9./hello_world_cpp -c ../../src/ceph.conf
7c673cae
FG
10(or whatever path to a ceph.conf is appropriate to you, or
11by explicitly specifying monitors, user id, and keys).
12
13It demonstrates using librados in a non-Ceph project and the code should
14be self-explanatory.