moving pegtl dependency as step 1 in install doc

This commit is contained in:
Nabil Hachicha 2016-03-14 16:39:44 -07:00
parent 16fd42f605
commit 27c9669fbc
1 changed files with 7 additions and 6 deletions

View File

@ -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 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. 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 brew install cmake
``` ```
2. Generate build files: 3. Generate build files:
``` ```
cmake . cmake .
``` ```
3. Download pegtl dependency
```
git submodule update --init
```
4. Build: 4. Build:
``` ```