mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 23:32:06 +00:00
updated qvm batch files with new paths
This commit is contained in:
parent
ec253713fb
commit
1d0f0196c3
4 changed files with 12 additions and 12 deletions
|
@ -73,9 +73,9 @@ echo *** Running Q3ASM for CGAME...
|
|||
|
||||
REM *** This tells q3asm to generate a vanilla q3-compatible qvm, generate a .map file, output
|
||||
REM *** the resulting .qvm into "%make-qvm-location%bin\qvm\vm\cgame" (it will be called cgame.qvm),
|
||||
REM *** and to compile the files listed in the cgame.q3asm script located in "%make-qvm-location%cgame/cgame".
|
||||
REM *** and to compile the files listed in the cgame.q3asm script located in "%make-qvm-location%code/cgame/cgame".
|
||||
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\cgame" -f "%make-qvm-location%cgame/cgame"
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\cgame" -f "%make-qvm-location%code/cgame/cgame"
|
||||
|
||||
:quit
|
||||
if errorlevel 1 (
|
||||
|
|
|
@ -112,9 +112,9 @@ echo *** Running Q3ASM for GAME/QAGAME...
|
|||
|
||||
REM *** This tells q3asm to generate a vanilla q3-compatible qvm, generate a .map file, output
|
||||
REM *** the resulting .qvm into "%make-qvm-location%bin\qvm\vm\qagame" (it will be called qagame.qvm),
|
||||
REM *** and to compile the files listed in the game.q3asm script located in "%make-qvm-location%game/game".
|
||||
REM *** and to compile the files listed in the game.q3asm script located in "%make-qvm-location%code/game/game".
|
||||
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\qagame" -f "%make-qvm-location%game/game"
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\qagame" -f "%make-qvm-location%code/game/game"
|
||||
|
||||
:quit
|
||||
if errorlevel 1 (
|
||||
|
|
|
@ -36,9 +36,9 @@ echo *** Running Q3ASM for UI...
|
|||
|
||||
REM *** This tells q3asm to generate a vanilla q3-compatible qvm, generate a .map file, output
|
||||
REM *** the resulting .qvm into "%make-qvm-location%bin\qvm\vm\ui" (it will be called ui.qvm),
|
||||
REM *** and to compile the files listed in the ui.q3asm script located in "%make-qvm-location%ui/ui".
|
||||
REM *** and to compile the files listed in the ui.q3asm script located in "%make-qvm-location%code/ui/ui".
|
||||
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\ui" -f "%make-qvm-location%ui/ui"
|
||||
q3asm -vq3 -m -o "%make-qvm-location%bin\qvm\vm\ui" -f "%make-qvm-location%code/ui/ui"
|
||||
|
||||
:quit
|
||||
if errorlevel 1 (
|
||||
|
|
|
@ -93,9 +93,9 @@ echo.
|
|||
echo *** Removing any previous QVM files.
|
||||
del "%make-qvm-location%bin\qvm\vm\*.map"
|
||||
del "%make-qvm-location%bin\qvm\vm\*.qvm"
|
||||
del "%make-qvm-location%cgame\vm\*.asm"
|
||||
del "%make-qvm-location%game\vm\*.asm"
|
||||
del "%make-qvm-location%ui\vm\*.asm"
|
||||
del "%make-qvm-location%code\cgame\vm\*.asm"
|
||||
del "%make-qvm-location%code\game\vm\*.asm"
|
||||
del "%make-qvm-location%code\ui\vm\*.asm"
|
||||
|
||||
|
||||
REM *** Generating the QVMs
|
||||
|
@ -105,17 +105,17 @@ echo *** Generating the QVMs
|
|||
echo.
|
||||
echo.
|
||||
echo *** Generating CGAME...
|
||||
cd "%make-qvm-location%"cgame
|
||||
cd "%make-qvm-location%"code\cgame
|
||||
call make-cgame.bat
|
||||
cd..
|
||||
echo.
|
||||
echo *** Generating GAME/QAGAME...
|
||||
cd "%make-qvm-location%"game
|
||||
cd "%make-qvm-location%"code\game
|
||||
call make-game.bat
|
||||
cd..
|
||||
echo.
|
||||
echo *** Generating UI...
|
||||
cd "%make-qvm-location%"ui
|
||||
cd "%make-qvm-location%"code\ui
|
||||
call make-ui.bat
|
||||
cd..
|
||||
|
||||
|
|
Loading…
Reference in a new issue