Blame iis/dependencies/build_yajl.bat

Packit Service 384592
cd "%WORK_DIR%"
Packit Service 384592
Packit Service 384592
@if NOT EXIST "%SOURCE_DIR%\%YAJL%" goto file_not_found_bin
Packit Service 384592
Packit Service 384592
7z.exe x "%SOURCE_DIR%\%YAJL%"
Packit Service 384592
set YAJL_DIR=%YAJL:~0,-4%
Packit Service 384592
Packit Service 384592
move "%YAJL_DIR%" "yajl"
Packit Service 384592
Packit Service 384592
cd "yajl"
Packit Service 384592
Packit Service 384592
mkdir build
Packit Service 384592
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
Packit Service 384592
cd build
Packit Service 384592
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
Packit Service 384592
cmake -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ..
Packit Service 384592
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
Packit Service 384592
nmake
Packit Service 384592
@if NOT (%ERRORLEVEL%) == (0) goto build_failed
Packit Service 384592
Packit Service 384592
cd "%WORK%"
Packit Service 384592
Packit Service 384592
copy /y "%WORK_DIR%\yajl\build\%YAJL_DIR%\lib\yajl.dll" "%OUTPUT_DIR%"
Packit Service 384592
:: copy /y "%WORK_DIR%\yajl\build\%YAJL_DIR%\lib\yajl.pdb" "%OUTPUT_DIR%"
Packit Service 384592
copy /y "%WORK_DIR%\yajl\build\%YAJL_DIR%\lib\yajl.lib" "%OUTPUT_DIR%"
Packit Service 384592
copy /y "%WORK_DIR%\yajl\build\%YAJL_DIR%\lib\yajl_s.lib" "%OUTPUT_DIR%"
Packit Service 384592
Packit Service 384592
@exit /B 0
Packit Service 384592
Packit Service 384592
:file_not_found_bin
Packit Service 384592
@echo File not found: "%SOURCE_DIR%\%PCRE%"
Packit Service 384592
@goto failed
Packit Service 384592
Packit Service 384592
:build_failed
Packit Service 384592
@echo Problems during the building phase
Packit Service 384592
@goto failed
Packit Service 384592
Packit Service 384592
:failed
Packit Service 384592
@exit /B 1