Skip to content

Commit

Permalink
readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
christianparpart committed Jul 26, 2014
1 parent 6d50f6d commit 977e481
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ int main() {
sudo apt-get install make cmake pkg-config git gcc-4.8 g++-4.8 \
libmysqlclient-dev libev-dev zlib1g-dev libbz2-dev libpcre3-dev

# If you want to built the tests, you must install libgtest-dev and then built it yourself
# If you want to built the tests, you must install libgtest-dev
# and then built it yourself
sudo apt-get install libgtest-dev
cd /usr/src/gtest && sudo cmake . && sudo make && sudo cp -vpi libgtest*.a /usr/local/lib/; cd -
cd /usr/src/gtest && sudo cmake . && sudo make && \
sudo cp -vpi libgtest*.a /usr/local/lib/; cd -

# Clone the repository
git clone git://github.com/xzero/libxzero.git && cd libxzero
Expand Down Expand Up @@ -84,10 +86,12 @@ sudo apt-get install gcc-4.8 g++-4.8
sudo apt-get install make cmake pkg-config git gcc-4.8 g++-4.8 \
libmysqlclient-dev libev-dev zlib1g-dev libbz2-dev libpcre3-dev

# If you want to built the tests, you must install libgtest-dev and then built it yourself
# If you want to built the tests, you must install libgtest-dev
# and then built it yourself
sudo apt-get install libgtest-dev
cd /usr/src/gtest && sudo cmake -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX . && \
sudo make && sudo cp -vpi libgtest*.a /usr/local/lib/; cd -
cd /usr/src/gtest && sudo cmake -DCMAKE_C_COMPILER=$CC \
-DCMAKE_CXX_COMPILER=$CXX . && sudo make && \
sudo cp -vpi libgtest*.a /usr/local/lib/; cd -

# Clone the repository
git clone git://github.com/xzero/libxzero.git && cd libxzero
Expand Down

0 comments on commit 977e481

Please sign in to comment.