Skip to content

Commit

Permalink
Update documents : add "git submodule update --init --recursive" for …
Browse files Browse the repository at this point in the history
  • Loading branch information
zieckey committed Apr 11, 2017
1 parent 390c5bc commit b3f5ca7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ Quick Start
### Download the source code of evpp

$ git clone https://github.com/Qihoo360/evpp
$ cd evpp
$ git submodule update --init --recursive

### Compile and run unit tests.

$ cd evpp
$ mkdir -p build && cd build
$ cmake -DCMAKE_BUILD_TYPE=Debug ..
$ make -j
Expand Down
6 changes: 4 additions & 2 deletions docs/quick_start_win32_vs2015.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ Quick Start using VS2015
### Download the source code of evpp

$ git clone https://github.com/Qihoo360/evpp
$ cd evpp
$ git submodule update --init --recursive

### Compile third-party dependent open source code

The `evpp` source is dependent with `libevent`, we suggest you choose the lastest version of libevent.
Right now, Feb 2017, the latest version of libevent is `2.1.8`.

Go to `evpp/3rdparty/libevent-release-2.1.8-stable`
Go to `3rdparty/libevent-release-2.1.8-stable`

$ cd evpp/3rdparty/libevent-release-2.1.8-stable
$ cd 3rdparty/libevent-release-2.1.8-stable
$ mkdir build && cd build
$ cmake -G "Visual Studio 14" ..
$ start libevent.sln
Expand Down

0 comments on commit b3f5ca7

Please sign in to comment.