This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 148
/
RebuildOfficialDistribution.bat
80 lines (71 loc) · 2.66 KB
/
RebuildOfficialDistribution.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@echo off
setlocal
::Select the path to the root Boost folder
set "psCommand="(new-object -COM 'Shell.Application')^
.BrowseForFolder(0,'Please select the root folder for 64-bit Boost (ex: c:\local\boost_1_61_0).',0,0).self.path""
for /f "usebackq delims=" %%I in (`powershell %psCommand%`) do set "BOOST_ROOT_PATH=%%I"
if NOT DEFINED BOOST_ROOT_PATH (goto failure)
:: Cleanup any prior distribution folders
IF EXIST dist (
del /f /s /q dist > nul
rmdir /s /q dist
)
:: Generate the 64-bit project files and dependencies for PSMoveService
call InitialSetup_X64.bat || goto failure
IF %ERRORLEVEL% NEQ 0 (
echo "Error setting up 64-bit PSMoveService project"
goto failure
)
:: Add MSVC build tools to the path
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
IF %ERRORLEVEL% NEQ 0 (
echo "Unable to initialize 64-bit visual studio build environment"
goto failure
)
:: Compile and deploy the RELEASE|x64 build of PSMoveService to the distribution folder
pushd build\
echo "Building PSMoveService RELEASE|x64..."
MSBuild.exe opencv.vcxproj /p:configuration=RELEASE /p:Platform="x64" /t:Build
IF %ERRORLEVEL% NEQ 0 (
echo "Error building OpenCV RELEASE|x64!"
goto failure
)
MSBuild.exe PSMoveService.sln /p:configuration=RELEASE /p:Platform="x64" /t:Build
IF %ERRORLEVEL% NEQ 0 (
echo "Error building PSMoveService RELEASE|x64!"
goto failure
)
MSBuild.exe INSTALL.vcxproj /p:configuration=RELEASE /p:Platform="x64" /t:Build
IF %ERRORLEVEL% NEQ 0 (
echo "Error deploying PSMoveService RELEASE|x64 to distribution folder!"
goto failure
)
MSBuild.exe CREATE_INSTALLER.vcxproj /p:configuration=RELEASE /p:Platform="x64" /t:Build
IF %ERRORLEVEL% NEQ 0 (
echo "Error building PSMoveService RELEASE|x64 installer in distribution folder!"
goto failure
)
popd
:: Find the distribution folder
if exist "dist/version.txt" (
set /p DISTRIBUTION_LABEL=<"dist/version.txt"
echo "Found distribution folder for version: %DISTRIBUTION_LABEL%"
) else (
echo "Failed to find the distribution folder generated from the builds!"
goto failure
)
:: Create the distribution zip from the Release|x64 folder
set "DISTRIBUTION_FOLDER=dist\Win64\Release"
set "DISTRIBUTION_ZIP=%DISTRIBUTION_LABEL%.zip"
echo "Creating distribution zip (%DISTRIBUTION_ZIP%) from: %DISTRIBUTION_FOLDER%"
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('%DISTRIBUTION_FOLDER%', '%DISTRIBUTION_ZIP%'); }"
IF %ERRORLEVEL% NEQ 0 (
echo "Failed to generate the distribution zip!"
goto failure
)
echo "Successfully created distribution zip: %DISTRIBUTION_ZIP%"
pause
EXIT /B 0
:failure
pause
EXIT /B 1