blob: ae0fa94a106e707f2293045cc261ebde9be9f70d [file] [log] [blame]
Adam Cozzetteb0a82202018-06-14 16:48:53 -07001set PATH=C:\Program Files (x86)\MSBuild\14.0\bin\;%PATH%
2set generator32=Visual Studio 14
3set generator64=Visual Studio 14 Win64
4set vcplatform32=win32
5set vcplatform64=x64
6set configuration=Release
7
8echo Building protoc
9cd github\protobuf
10
11mkdir build32
12cd build32
13cmake -G "%generator32%" -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_SHARED_LIBS=OFF -Dprotobuf_UNICODE=ON ../cmake
14msbuild protobuf.sln /p:Platform=%vcplatform32% || goto error
15cd ..
16
17mkdir build64
18cd build64
19cmake -G "%generator64%" -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_SHARED_LIBS=OFF -Dprotobuf_UNICODE=ON ../cmake
20msbuild protobuf.sln /p:Platform=%vcplatform64% || goto error
21cd ..
22
23goto :EOF
24
25:error
26echo Failed!
27exit /b %ERRORLEVEL%