Skip to content

Commit

Permalink
fix(build.bat): fix build errors with VS2015 build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Prcuvu committed Sep 18, 2017
1 parent 68479eb commit ec940c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if %build_thirdparty% == 1 (
echo building leveldb.
cd %THIRDPARTY%\src\leveldb-windows
echo BOOST_ROOT=%BOOST_ROOT%
msbuild.exe leveldb.sln /p:Configuration=Release
msbuild.exe leveldb.sln /p:Configuration=Release /p:Platform=Win32
if %ERRORLEVEL% NEQ 0 goto ERROR
echo built. copying artifacts.
xcopy /S /I /Y include\leveldb %THIRDPARTY%\include\leveldb\
Expand Down Expand Up @@ -128,7 +128,7 @@ if %build_thirdparty% == 1 (

echo building marisa.
cd %THIRDPARTY%\src\marisa-trie\vs2015
msbuild.exe vs2015.sln /p:Configuration=Release
msbuild.exe vs2015.sln /p:Configuration=Release /p:Platform=Win32
if %ERRORLEVEL% NEQ 0 goto ERROR
echo built. copying artifacts.
xcopy /S /I /Y ..\lib\marisa %THIRDPARTY%\include\marisa\
Expand Down

0 comments on commit ec940c6

Please sign in to comment.