We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 033677c commit a70b007Copy full SHA for a70b007
.gitignore
@@ -1,6 +1,6 @@
1
+/build/
2
*.pyc
3
*.swp
-
4
*.actual
5
*.actual-rewrite
6
*.process-output
README.md
@@ -62,9 +62,9 @@ Steps for generating solution/makefiles using `cmake-gui`:
62
63
Alternatively, from the command-line on Unix in the source directory:
64
65
- mkdir -p ../build/debug
66
- cd ../build/debug
67
- cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../../jsoncpp/src
+ mkdir -p build/debug
+ cd build/debug
+ cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../..
68
make
69
70
Running `cmake -`" will display the list of available generators (passed using
0 commit comments