Merge pull request #36 from AlphaCluster/build-readme-cleanup

Changing the markdown for build examples
This commit is contained in:
Kjell Hedstrom 2015-08-06 22:31:51 -06:00
commit 88fc290d45

View File

@ -167,20 +167,20 @@ mkdir build
cd build cd build
``` ```
** Building on Linux ** ## Building on Linux
``` ```
cmake -DCMAKE_BUILD_TYPE=Release .. cmake -DCMAKE_BUILD_TYPE=Release ..
make make
``` ```
** Building on Windows ** ## Building on Windows
Please use the Visual Studio 12 (2013) command prompt "Developer command prompt" Please use the Visual Studio 12 (2013) command prompt "Developer command prompt"
``` ```
cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 12" .. cmake -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 12" ..
msbuild g3log.sln /p:Configuration=Release msbuild g3log.sln /p:Configuration=Release
``` ```
** Building on *nix with Clang: ** ## Building on *nix with Clang
``` ```
cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release .. cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release ..
make make