Replaced StormLib .lib files with source code.
Some modifications to handle backslashes and forward slashes, along with some optimizations to speed up OTR generation.
This commit is contained in:
46
StormLib/make.bat
Normal file
46
StormLib/make.bat
Normal file
@@ -0,0 +1,46 @@
|
||||
@echo off
|
||||
if not "x%WDKDIR%" == "x" goto SELECT_LIB
|
||||
echo The WDKDIR environment variable is not set
|
||||
echo Set this variable to your WDK directory (without ending backslash)
|
||||
echo Example: set WDKDIR C:\WinDDK\6001
|
||||
pause
|
||||
goto:eof
|
||||
|
||||
:SELECT_LIB
|
||||
set PROJECT_DIR=%~dp0
|
||||
set LIBRARY_NAME=StormLibWDK
|
||||
|
||||
:PREPARE_SOURCES
|
||||
echo Preparing sources ...
|
||||
copy .\src\wdk\sources-cpp.cpp . >nul
|
||||
copy .\src\wdk\sources-wdk-* . >nul
|
||||
echo.
|
||||
|
||||
:BUILD_LIB_32
|
||||
echo Building %LIBRARY_NAME%.lib (32-bit) ...
|
||||
set DDKBUILDENV=
|
||||
call %WDKDIR%\bin\setenv.bat %WDKDIR%\ fre w2k
|
||||
cd %PROJECT_DIR%
|
||||
build.exe -czgw
|
||||
del buildfre_w2k_x86.log
|
||||
echo.
|
||||
|
||||
:BUILD_LIB_64
|
||||
echo Building %LIBRARY_NAME%.lib (64-bit) ...
|
||||
set DDKBUILDENV=
|
||||
call %WDKDIR%\bin\setenv.bat %WDKDIR%\ fre x64 WLH
|
||||
cd %PROJECT_DIR%
|
||||
build.exe -czgw
|
||||
del buildfre_wlh_amd64.log
|
||||
echo.
|
||||
|
||||
:COPY_LIBS
|
||||
copy /Y .\objfre_wlh_amd64\amd64\%LIBRARY_NAME%.lib ..\aaa\lib64\%LIBRARY_NAME%.lib >nul
|
||||
copy /Y .\objfre_w2k_x86\i386\%LIBRARY_NAME%.lib ..\aaa\lib32\%LIBRARY_NAME%.lib >nul
|
||||
copy /Y .\src\StormPort.h ..\aaa\inc >nul
|
||||
copy /Y .\src\StormLib.h ..\aaa\inc >nul
|
||||
|
||||
:CLEANUP
|
||||
if exist sources-cpp.cpp del sources-cpp.cpp
|
||||
if exist sources-wdk-* del sources-wdk-*
|
||||
if exist build.bat del build.bat
|
||||
Reference in New Issue
Block a user