mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 15:45:06 -04:00
fc7da35054
Some modifications to handle backslashes and forward slashes, along with some optimizations to speed up OTR generation.
47 lines
1.2 KiB
Batchfile
47 lines
1.2 KiB
Batchfile
@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
|