cutter/build.bat

46 lines
1.3 KiB
Batchfile
Raw Normal View History

2018-01-03 18:46:30 +00:00
@ECHO off
SETLOCAL ENABLEDELAYEDEXPANSION
SETLOCAL ENABLEEXTENSIONS
2018-04-05 08:05:00 +00:00
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
)
2018-04-05 08:05:00 +00:00
SET "R2DIST=r2_dist_%PLATFORM%"
SET "BUILDDIR=build_%PLATFORM%"
SET "BREAKPAD_SOURCE_DIR=%CD%\src\breakpad\src\src"
2018-04-05 08:05:00 +00:00
2018-01-03 18:46:30 +00:00
ECHO Preparing directory
2018-04-05 08:05:00 +00:00
RMDIR /S /Q %BUILDDIR%
MKDIR %BUILDDIR%
2018-10-31 16:07:53 +00:00
ECHO Prepare translations
2019-01-05 11:32:03 +00:00
FOR %%i in (src\translations\*.ts) DO lrelease %%i
2018-10-31 16:07:53 +00:00
2018-04-05 08:05:00 +00:00
CD %BUILDDIR%
IF NOT DEFINED CUTTER_ENABLE_CRASH_REPORTS (
SET "CUTTER_ENABLE_CRASH_REPORTS=false"
)
2018-01-03 18:46:30 +00:00
ECHO Building cutter
qmake BREAKPAD_SOURCE_DIR=%BREAKPAD_SOURCE_DIR% CUTTER_ENABLE_CRASH_REPORTS=%CUTTER_ENABLE_CRASH_REPORTS% %* ..\src\cutter.pro -config release
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
nmake
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
2018-01-03 18:46:30 +00:00
ECHO Deploying cutter
MKDIR cutter
2018-04-05 08:05:00 +00:00
COPY release\cutter.exe cutter\cutter.exe
XCOPY /S /I ..\%R2DIST%\radare2 cutter\radare2
2019-09-16 10:37:41 +00:00
DEL cutter\radare2\lib\*.lib
2019-07-02 06:18:59 +00:00
COPY ..\%R2DIST%\bin\*.dll cutter\
windeployqt cutter\cutter.exe
2019-01-05 11:32:03 +00:00
FOR %%i in (..\src\translations\*.qm) DO MOVE "%%~fi" cutter\translations
ENDLOCAL