mirror of https://github.com/grpc/grpc-java.git
41 lines
1.3 KiB
Batchfile
41 lines
1.3 KiB
Batchfile
set PROTOBUF_VER=3.5.1
|
|
set CMAKE_NAME=cmake-3.3.2-win32-x86
|
|
|
|
if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (
|
|
call :installProto
|
|
)
|
|
|
|
echo Compile gRPC-Java with something like:
|
|
echo -PtargetArch=x86_32 -PvcProtobufLibs=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\Release -PvcProtobufInclude=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\include
|
|
goto :eof
|
|
|
|
|
|
:installProto
|
|
|
|
where /q cmake
|
|
if not ERRORLEVEL 1 goto :hasCmake
|
|
if not exist "%CMAKE_NAME%" (
|
|
call :installCmake
|
|
)
|
|
set PATH=%PATH%;%cd%\%CMAKE_NAME%\bin
|
|
:hasCmake
|
|
powershell -command "& { iwr https://github.com/google/protobuf/archive/v%PROTOBUF_VER%.zip -OutFile protobuf.zip }"
|
|
powershell -command "& { Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory('protobuf.zip', '.') }"
|
|
del protobuf.zip
|
|
pushd protobuf-%PROTOBUF_VER%\cmake
|
|
mkdir build
|
|
cd build
|
|
cmake -Dprotobuf_BUILD_TESTS=OFF -G "Visual Studio %VisualStudioVersion:~0,2%" ..
|
|
msbuild /maxcpucount /p:Configuration=Release libprotoc.vcxproj
|
|
call extract_includes.bat
|
|
popd
|
|
goto :eof
|
|
|
|
|
|
:installCmake
|
|
|
|
powershell -command "& { iwr https://cmake.org/files/v3.3/%CMAKE_NAME%.zip -OutFile cmake.zip }"
|
|
powershell -command "& { Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory('cmake.zip', '.') }"
|
|
del cmake.zip
|
|
goto :eof
|