Skip to content
Snippets Groups Projects
Commit 7d342681 authored by Grant Kim's avatar Grant Kim
Browse files

Added: Run Before/After

parent 0ce84af4
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,8 @@ SETLOCAL ...@@ -29,6 +29,8 @@ SETLOCAL
SET locSrc=./ SET locSrc=./
SET locDest=../ SET locDest=../
SET addiParams= SET addiParams=
SET RUN_BEFORE=
SET RUN_AFTER=
REM REM
REM Please configure following parameters in here. REM Please configure following parameters in here.
...@@ -117,8 +119,10 @@ echo. ...@@ -117,8 +119,10 @@ echo.
goto end goto end
:compileSingle :compileSingle
%RUN_BEFORE%
papyruscompiler %* -f=TESV_Papyrus_Flags.flg -op^ papyruscompiler %* -f=TESV_Papyrus_Flags.flg -op^
-o="%locDest%" -import="%INCLUDEPATH%" -o="%locDest%" -import="%INCLUDEPATH%"
%RUN_AFTER%
goto end goto end
:invaildFile :invaildFile
...@@ -127,8 +131,10 @@ echo program terminated. ...@@ -127,8 +131,10 @@ echo program terminated.
goto end goto end
:compileAll :compileAll
%RUN_BEFORE%
papyruscompiler ./ -all -f=TESV_Papyrus_Flags.flg -op^ papyruscompiler ./ -all -f=TESV_Papyrus_Flags.flg -op^
-o="%locDest%" -import="%INCLUDEPATH%" -o="%locDest%" -import="%INCLUDEPATH%"
%RUN_AFTER%
goto end goto end
:end :end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment