From 8e82601ffbd3942272449ee13d41694a7582bd15 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 3 Feb 2016 11:08:04 +0100 Subject: [PATCH] Fixed cmake commands for those with clang++ as default compiler. Fixes #158 --- docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index 4f2da1c..cf0744b 100644 --- a/docs/install.md +++ b/docs/install.md @@ -22,7 +22,7 @@ Get juCi++ source, compile and install: git clone --recursive https://github.com/cppit/jucipp mkdir jucipp/build cd jucipp/build -cmake .. +cmake -DCMAKE_CXX_COMPILER=g++ .. make sudo make install ``` @@ -38,7 +38,7 @@ Get juCi++ source, compile and install: git clone --recursive https://github.com/cppit/jucipp mkdir jucipp/build cd jucipp/build -cmake .. +cmake -DCMAKE_CXX_COMPILER=g++ .. make sudo make install ```