mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-04-04 17:02:00 +00:00
final fixes for qvm batch files, should work now
This commit is contained in:
parent
fa556ded3b
commit
c5c5ac7119
4 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@ REM *** NOTE: THIS BATCH FILE IS MEANT TO BE CALLED BY make-qvm.bat!
|
|||
REM *** NOTE: THIS CANNOT BE RUN BY ITSELF WITHOUT %make-qvm-location% BEING DEFINED!
|
||||
|
||||
cd vm
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ta_ui
|
||||
|
||||
|
||||
echo.
|
||||
|
|
|
@ -6,7 +6,7 @@ REM *** NOTE: THIS BATCH FILE IS MEANT TO BE CALLED BY make-qvm.bat!
|
|||
REM *** NOTE: THIS CANNOT BE RUN BY ITSELF WITHOUT %make-qvm-location% BEING DEFINED!
|
||||
|
||||
cd vm
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ta_ui
|
||||
|
||||
|
||||
echo.
|
||||
|
|
|
@ -13,7 +13,7 @@ REM *** Typically this will be something like c:\code\reaction\
|
|||
REM *** but you can put in whatever you want, like make-qvm-location="c:\reaction code\"
|
||||
REM *** Remember to add in a trailing backslash \ at the end of the path!
|
||||
|
||||
set make-qvm-location=f:\code\reaction\
|
||||
set make-qvm-location=c:\reaction\reaction\
|
||||
|
||||
|
||||
REM *** Check to see if the location of make-qvm.bat is valid. It is required for this batch file.
|
||||
|
|
|
@ -6,7 +6,7 @@ REM *** NOTE: THIS BATCH FILE IS MEANT TO BE CALLED BY make-qvm.bat!
|
|||
REM *** NOTE: THIS CANNOT BE RUN BY ITSELF WITHOUT %make-qvm-location% BEING DEFINED!
|
||||
|
||||
cd vm
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui
|
||||
set cc=q3lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ta_ui
|
||||
|
||||
|
||||
echo.
|
||||
|
@ -38,11 +38,11 @@ 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%ta_ui/ui".
|
||||
|
||||
REM *** TEMPORARY BATCH FILE FOR OLD SVN PATHS!
|
||||
|
||||
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%ta_ui/ui"
|
||||
|
||||
:quit
|
||||
if errorlevel 1 (
|
||||
|
|
Loading…
Reference in a new issue