summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Mumford <cmumford@google.com>2019-04-12 12:02:21 -0700
committerGitHub <noreply@github.com>2019-04-12 12:02:21 -0700
commit031ae8e2dba4a7ca79f64088db989186475a0b68 (patch)
tree1a13897725e40e355dab488d09e3e99f5a078854
parent5a2a472741f36ecf5b994439da5a64c6ab90c47f (diff)
downloadleveldb-doc-testing.tar.gz
Test cmd markdowndoc-testing
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4f8ce63..537cab1 100644
--- a/README.md
+++ b/README.md
@@ -44,20 +44,20 @@ cmake -DCMAKE_BUILD_TYPE=Release .. && cmake --build .
First generate the Visual Studio 2017 project/solution files:
-```bash
-mkdir -p build
+```cmd
+mkdir build
cd build
cmake -G "Visual Studio 15" ..
```
The default default will build for x86. For 64-bit run:
-```bash
+```cmd
cmake -G "Visual Studio 15 Win64" ..
```
To compile the Windows solution from the command-line:
-```bash
+```cmd
devenv /build Debug leveldb.sln
```