From: Ali Maredia Date: Tue, 4 Aug 2015 16:45:52 +0000 (-0400) Subject: README.md: Add basic CMake instructions X-Git-Tag: v9.1.0~227^2~1^2~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6e7fafc9d2d28e4bd75645de19410b7ec5b7c769;p=ceph.git README.md: Add basic CMake instructions README.md: Fixed spacing, trimmed cmake section Signed-off-by: Ali Maredia --- diff --git a/README.md b/README.md index db891ea91b3d..a3684e40d1e9 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ Debian Squeeze. Backports for Ceph can be found at ceph.com/debian-leveldb. Building Ceph ============= +Autotools +--------- + Developers, please refer to the [Developer Guide](doc/dev/quick_guide.rst) for more information, otherwise, you can build the server daemons, and FUSE client, by executing the @@ -47,6 +50,21 @@ following: (Note that the FUSE client will only be built if libfuse is present.) +CMake +----- + +Prerequisite: + CMake 2.8.11 + +Build instructions: + + mkdir build + cd build + cmake [options] /path/to/ceph/src/dir + make + +(Note that /path/to/ceph/src/dir can be in the tree and out of the tree) + Dependencies ------------