From 27c9669fbc87b12da1d321de25b82dc5d358ae18 Mon Sep 17 00:00:00 2001 From: Nabil Hachicha Date: Mon, 14 Mar 2016 16:39:44 -0700 Subject: [PATCH] moving pegtl dependency as step 1 in install doc --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 599fab64..8187e806 100644 --- a/README.md +++ b/README.md @@ -11,21 +11,22 @@ Cross-platform code used accross bindings. Binding developers can choose to use The object store's build system currently only suports building for OS X. The object store itself can build for all Apple platforms when integrated into a binding. -1. Install CMake. You can download an installer for OS X from the [CMake download page](https://cmake.org/download/), or install via [Homebrew](http://brew.sh): +1. Download PEGTL dependency + ``` + git submodule update --init + ``` + +2. Install CMake. You can download an installer for OS X from the [CMake download page](https://cmake.org/download/), or install via [Homebrew](http://brew.sh): ``` brew install cmake ``` -2. Generate build files: +3. Generate build files: ``` cmake . ``` -3. Download pegtl dependency - ``` - git submodule update --init - ``` 4. Build: ```