From ce277aa6e4a2dfe3a74f13ed71ae261b6c144af1 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Wed, 8 May 2013 20:37:54 +0000 Subject: [PATCH] Fixed CMake / Unix build instructions. --- README.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index ca3a486..6128e3e 100644 --- a/README.txt +++ b/README.txt @@ -62,8 +62,9 @@ Generating solution/makefiles using cmake-gui: Alternatively, from the command-line on Unix in the source directory: mkdir -p ../build/debug - cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../build/debug - (cd ../build/debug && make) + cd ../build/debug + cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../../jsoncpp-src + make Running "cmake -h" will display the list of available generators (passed as -G option).