Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Sep 24, 2018
1 parent 0f5535d commit 6c2206a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/windows_vs2017/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def main():
cmake_add = " -A X64 "

enable_leveldb = 1 if build_type != "Debug" else 0
leveldb_fetch = 1
leveldb_fetch = 0

path_add = "_" + build_type + "_" + build_arch

Expand Down Expand Up @@ -387,7 +387,7 @@ def main():
os.chdir(project)

# install LevelDB package
if enable_leveldb:
if enable_leveldb and not leveldb_fetch:
os.system(r"..\NuGet.exe install LevelDB -source {cwd}\..\{deps}".format(cwd=os.getcwd(), deps=deps))

cmake_string = r"""
Expand Down

0 comments on commit 6c2206a

Please sign in to comment.