Files
gtav-src/tools_ng/bin/coding/python/build_and_copy.bat
T
2025-09-29 00:52:08 +02:00

24 lines
602 B
Batchfile
Executable File

@ECHO OFF
SETLOCAL
REM syncs the files in this directory with the ones from the rage directory
REM uncomment these lines if you also want a one-stop shop for regenerating the projects too
pushd %RAGE_DIR%\base\tools\cli\parCodeGen
call build.bat
if ERRORLEVEL 1 goto :EOF
pushd %RAGE_DIR%\base\tools\cli\stripobjects
call build.bat
if ERRORLEVEL 1 goto :EOF
REM pushd %RAGE_DIR%\suite\src\actiontree
REM build_py2exe.bat
call setenv
pushd %RS_TOOLSBIN%\coding\python
p4 edit ./...
copy %RAGE_DIR%\framework\tools\bin\coding\python\*.* .
p4 revert -a ./...
echo %0 Finished!