aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2018-09-18 11:27:14 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2018-09-18 11:27:14 +0200
commiteb06a1a2be61e929e5dca288fc4b9a27dcbb6507 (patch)
treeb3649b6cea791c975ff4d8e238b7b9801a24d2fb /README.md
parent7b213e70919e505e86d98c4de67b6819d35a3a97 (diff)
[docs] mention cmake --build instead of make
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index cea900f2..1920e7b2 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Build from command line:
mkdir build
cd build
cmake ..
- <respective-make-cmd = gmake, make, mingw32-make, nmake>
+ cmake --build .
You can pass the following arguments to CMake:
@@ -52,7 +52,7 @@ and Documentation using the following command:
Install from command line:
- <respective-make-cmd = gmake, make, mingw32-make, nmake> install
+ cmake --build . --target install
EXAMPLES
========