https://github.com/interpretml/interpret
Raw File
Tip revision: 46e29e9edcdcb10c6876c9f09ea28a2723816343 authored by Interpret ML on 17 May 2019, 20:41:12 UTC
Bump to v0.1.2.
Tip revision: 46e29e9
build.bat
@ECHO OFF
SETLOCAL

SET script_path=%~dp0

MSBuild.exe "%script_path%src\core\emlcore.sln" /p:Configuration=Release /p:Platform=x64
IF %ERRORLEVEL% NEQ 0 (
   ECHO MSBuild for Release x64 returned error code %ERRORLEVEL%
   EXIT /B %ERRORLEVEL%
)
MSBuild.exe "%script_path%src\core\emlcore.sln" /p:Configuration=Release /p:Platform=x86
IF %ERRORLEVEL% NEQ 0 (
   ECHO MSBuild for Release x86 returned error code %ERRORLEVEL%
   EXIT /B %ERRORLEVEL%
)
MSBuild.exe "%script_path%src\core\emlcore.sln" /p:Configuration=Debug /p:Platform=x64
IF %ERRORLEVEL% NEQ 0 (
   ECHO MSBuild for Debug x64 returned error code %ERRORLEVEL%
   EXIT /B %ERRORLEVEL%
)
MSBuild.exe "%script_path%src\core\emlcore.sln" /p:Configuration=Debug /p:Platform=x86
IF %ERRORLEVEL% NEQ 0 (
   ECHO MSBuild for Debug x86 returned error code %ERRORLEVEL%
   EXIT /B %ERRORLEVEL%
)

EXIT /B 0
back to top