From 7b1174519044339f07a023dc445b0d36425bd6db Mon Sep 17 00:00:00 2001 From: Chris Mumford Date: Sat, 13 Apr 2019 09:19:55 -0700 Subject: [PATCH] Changed Windows specific highlighting from bash to cmd. This makes the syntax highlighting a little nicer on GitHub. PiperOrigin-RevId: 243426806 --- README.md | 6 +++--- 1 file 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 ```