summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRoss Cousens <rcousens@users.noreply.github.com>2018-07-16 10:18:04 +1000
committerAlan Antonuk <alan.antonuk@gmail.com>2018-07-15 17:43:10 -0700
commit1fa5f63e6ba34d6d29fea7db62fde1b2bf96d914 (patch)
tree95b06f36363e5aebc9c37cdb33a2e3c3d2fc24fe /README.md
parenta65c64c0efd883f3e200bd8831ad3ca066ea523c (diff)
downloadrabbitmq-c-1fa5f63e6ba34d6d29fea7db62fde1b2bf96d914.tar.gz
Fix instructions for default build
The order of arguments were incorrect, --build must directly specify the directory afterwards.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5255315..b7776c6 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ systems are:
mkdir build && cd build
cmake ..
- cmake --build [--config Release] .
+ cmake --build . [--config Release]
The --config Release flag should be used in multi-configuration generators e.g.,
Visual Studio or XCode.