iis: Renamves winbuild to dependencies

Since the directory becomes all about dependencies
there is no need to call it winbuild anymore.
This commit is contained in:
Felipe \\\"Zimmerle\\\" Costa
2013-11-05 19:44:55 -06:00
committed by Felipe Zimmerle
parent 9f8cbf6ed8
commit 1447766e81
10 changed files with 82 additions and 82 deletions

View File

@@ -0,0 +1,24 @@
cd "%WORK_DIR%"
@if NOT EXIST "%SOURCE_DIR%\%APACHE_BIN%" goto file_not_found_bin
7z.exe x "%SOURCE_DIR%\%PCRE%"
set PCRE_DIR=%PCRE:~0,-4%
cd "%PCRE_DIR%"
CMAKE -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=True
NMAKE
cd "%WORK%"
copy /y "%WORK_DIR%\%PCRE_DIR%\pcre.dll" "%OUTPUT_DIR%"
copy /y "%WORK_DIR%\%PCRE_DIR%\pcre.pdb" "%OUTPUT_DIR%"
copy /y "%WORK_DIR%\%PCRE_DIR%\pcre.lib" "%OUTPUT_DIR%"
echo "a"
@exit /B 0
:file_not_found_bin
@echo File not found: "%SOURCE_DIR%\%PCRE%"
@goto failed
:failed
@exit /B 1