mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
22 lines
649 B
Batchfile
22 lines
649 B
Batchfile
|
@echo off
|
||
|
setlocal
|
||
|
|
||
|
rem ================================
|
||
|
rem ==== MOD PATH CONFIGURATIONS ===
|
||
|
|
||
|
rem == Set the absolute path to your mod's game directory here ==
|
||
|
set GAMEDIR=%cd%\..\..\..\game\mod_hl2mp
|
||
|
|
||
|
rem == Set the relative or absolute path to Source SDK Base 2013 Singleplayer\bin ==
|
||
|
set SDKBINDIR=C:\SteamBetaLibrary\SteamApps\common\Source SDK Base 2013 Singleplayer\bin
|
||
|
|
||
|
rem == Set the Path to your mod's root source code ==
|
||
|
rem This should already be correct, accepts relative paths only!
|
||
|
set SOURCEDIR=..\..
|
||
|
|
||
|
rem ==== MOD PATH CONFIGURATIONS END ===
|
||
|
rem ====================================
|
||
|
|
||
|
|
||
|
call buildsdkshaders.bat
|