Browse Source

Fixed cmake commands for those with clang++ as default compiler. Fixes #158

merge-requests/365/head
eidheim 10 years ago
parent
commit
8e82601ffb
  1. 4
      docs/install.md

4
docs/install.md

@ -22,7 +22,7 @@ Get juCi++ source, compile and install:
git clone --recursive https://github.com/cppit/jucipp git clone --recursive https://github.com/cppit/jucipp
mkdir jucipp/build mkdir jucipp/build
cd jucipp/build cd jucipp/build
cmake .. cmake -DCMAKE_CXX_COMPILER=g++ ..
make make
sudo make install sudo make install
``` ```
@ -38,7 +38,7 @@ Get juCi++ source, compile and install:
git clone --recursive https://github.com/cppit/jucipp git clone --recursive https://github.com/cppit/jucipp
mkdir jucipp/build mkdir jucipp/build
cd jucipp/build cd jucipp/build
cmake .. cmake -DCMAKE_CXX_COMPILER=g++ ..
make make
sudo make install sudo make install
``` ```

Loading…
Cancel
Save