summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChris Mumford <cmumford@google.com>2019-04-13 09:19:55 -0700
committerChris Mumford <cmumford@google.com>2019-04-13 09:20:48 -0700
commit7b1174519044339f07a023dc445b0d36425bd6db (patch)
treeb540d69242836f536ad19cec05be10a77ecf9101 /README.md
parent2f008ac19ec783e4d0ba2161320241c99e9897e1 (diff)
downloadleveldb-7b1174519044339f07a023dc445b0d36425bd6db.tar.gz
Changed Windows specific highlighting from bash to cmd.
This makes the syntax highlighting a little nicer on GitHub. PiperOrigin-RevId: 243426806
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0121dd8..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
+```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
```