radare2/configure.bat
2021-08-17 20:18:43 +00:00

13 lines
212 B
Batchfile

@echo off
REM call preconfigure.bat
set PATH=%CD%\prefix\bin;%PATH%
meson b -Dsdb_cgen=false --reconfigure
if %ERRORLEVEL% == 0 (
echo Done
exit /b 0
) else (
echo Try running 'preconfigure'
exit /b 1
)