mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
33 lines
934 B
Batchfile
33 lines
934 B
Batchfile
@ECHO off
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
IF "%VisualStudioVersion%" == "14.0" ( IF NOT DEFINED Platform SET "Platform=X86" )
|
|
FOR /F %%i IN ('powershell -c "\"%Platform%\".toLower()"') DO SET PLATFORM=%%i
|
|
powershell -c "if ('%PLATFORM%' -notin ('x86', 'x64')) {Exit 1}"
|
|
IF !ERRORLEVEL! NEQ 0 (
|
|
ECHO Unknown platform: %PLATFORM%
|
|
EXIT /B 1
|
|
)
|
|
|
|
SET "R2DIST=r2_dist_%PLATFORM%"
|
|
SET "BUILDDIR=build_%PLATFORM%"
|
|
|
|
ECHO Preparing directory
|
|
RMDIR /S /Q %BUILDDIR%
|
|
MKDIR %BUILDDIR%
|
|
CD %BUILDDIR%
|
|
|
|
ECHO Building cutter
|
|
qmake %* ..\src\cutter.pro -config release -tp vc
|
|
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
|
|
msbuild /m cutter.vcxproj /p:Configuration=Release
|
|
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
|
|
|
|
ECHO Deploying cutter
|
|
MKDIR cutter
|
|
COPY release\cutter.exe cutter\cutter.exe
|
|
XCOPY /S /I ..\%R2DIST%\www cutter\www
|
|
XCOPY /S /I ..\%R2DIST%\share cutter\share
|
|
COPY ..\%R2DIST%\*.dll cutter\
|
|
windeployqt cutter\cutter.exe
|