mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-29 08:01:04 +00:00
13 lines
212 B
Batchfile
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
|
|
) |