aboutsummaryrefslogtreecommitdiff
path: root/src/leveldb/WINDOWS.md
diff options
context:
space:
mode:
authorPieter Wuille <sipa@ulyssis.org>2013-08-20 14:03:29 +0200
committerPieter Wuille <sipa@ulyssis.org>2013-08-20 14:03:29 +0200
commit5c739c574fdc9197b317221305e14e7701a452b3 (patch)
treea033f705990fffccaf8b9d2d58d045f8f9c50a5d /src/leveldb/WINDOWS.md
parent20b611770f6900209f125f7cd4bf45fdb1fe4370 (diff)
Remove inline LevelDB to prepare for git-subtree version
Diffstat (limited to 'src/leveldb/WINDOWS.md')
-rw-r--r--src/leveldb/WINDOWS.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/leveldb/WINDOWS.md b/src/leveldb/WINDOWS.md
deleted file mode 100644
index 5b76c2448f..0000000000
--- a/src/leveldb/WINDOWS.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Building LevelDB On Windows
-
-## Prereqs
-
-Install the [Windows Software Development Kit version 7.1](http://www.microsoft.com/downloads/dlx/en-us/listdetailsview.aspx?FamilyID=6b6c21d2-2006-4afa-9702-529fa782d63b).
-
-Download and extract the [Snappy source distribution](http://snappy.googlecode.com/files/snappy-1.0.5.tar.gz)
-
-1. Open the "Windows SDK 7.1 Command Prompt" :
- Start Menu -> "Microsoft Windows SDK v7.1" > "Windows SDK 7.1 Command Prompt"
-2. Change the directory to the leveldb project
-
-## Building the Static lib
-
-* 32 bit Version
-
- setenv /x86
- msbuild.exe /p:Configuration=Release /p:Platform=Win32 /p:Snappy=..\snappy-1.0.5
-
-* 64 bit Version
-
- setenv /x64
- msbuild.exe /p:Configuration=Release /p:Platform=x64 /p:Snappy=..\snappy-1.0.5
-
-
-## Building and Running the Benchmark app
-
-* 32 bit Version
-
- setenv /x86
- msbuild.exe /p:Configuration=Benchmark /p:Platform=Win32 /p:Snappy=..\snappy-1.0.5
- Benchmark\leveldb.exe
-
-* 64 bit Version
-
- setenv /x64
- msbuild.exe /p:Configuration=Benchmark /p:Platform=x64 /p:Snappy=..\snappy-1.0.5
- x64\Benchmark\leveldb.exe
-