mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
21 lines
694 B
Batchfile
21 lines
694 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 "PATH=%CD%;%PATH%"
|
|
SET "R2DIST=r2_dist_%PLATFORM%"
|
|
|
|
ECHO Building radare2 (%PLATFORM%)
|
|
CD radare2
|
|
git clean -xfd
|
|
RMDIR /S /Q ..\%R2DIST%
|
|
python sys\meson.py --release --shared --install=..\%R2DIST% --options "r2_datdir=radare2/share" "r2_libdir=radare2/lib" "c_args=-D_UNICODE -DUNICODE"
|
|
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
|