117 lines
3.0 KiB
Batchfile
117 lines
3.0 KiB
Batchfile
@echo off
|
|
setlocal
|
|
|
|
rem BAT script that creates the binaries for Carla (carla.org).
|
|
rem Run it through a cmd with the x64 Visual C++ Toolset enabled.
|
|
|
|
set LOCAL_PATH=%~dp0
|
|
set "FILE_N=-[%~n0]:"
|
|
|
|
rem Print batch params (debug purpose)
|
|
echo %FILE_N% [Batch params]: %*
|
|
|
|
rem ============================================================================
|
|
rem -- Parse arguments ---------------------------------------------------------
|
|
rem ============================================================================
|
|
|
|
set LAUNCH_UE4_EDITOR=false
|
|
set REMOVE_INTERMEDIATE=false
|
|
|
|
:arg-parse
|
|
if not "%1"=="" (
|
|
if "%1"=="--launch" (
|
|
set LAUNCH_UE4_EDITOR=true
|
|
)
|
|
if "%1"=="--clean" (
|
|
set REMOVE_INTERMEDIATE=true
|
|
)
|
|
if "%1"=="-h" (
|
|
goto help
|
|
)
|
|
if "%1"=="--help" (
|
|
goto help
|
|
)
|
|
shift
|
|
goto arg-parse
|
|
)
|
|
|
|
if %REMOVE_INTERMEDIATE% == false (
|
|
if %LAUNCH_UE4_EDITOR% == false (
|
|
echo Nothing selected to be done.
|
|
echo %USAGE_STRING%
|
|
goto eof
|
|
)
|
|
)
|
|
|
|
rem Set the visual studio solution directory
|
|
rem
|
|
set UE4_PROJECT_FOLDER=%ROOT_PATH%Unreal\CarlaUE4\
|
|
pushd "%UE4_PROJECT_FOLDER%"
|
|
|
|
rem Clear binaries and intermediates generated by the build system
|
|
rem
|
|
if %REMOVE_INTERMEDIATE% == true (
|
|
rem Remove directories
|
|
for %%G in (
|
|
"%UE4_PROJECT_FOLDER:/=\%Binaries",
|
|
"%UE4_PROJECT_FOLDER:/=\%Build",
|
|
"%UE4_PROJECT_FOLDER:/=\%Saved",
|
|
"%UE4_PROJECT_FOLDER:/=\%Intermediate",
|
|
"%UE4_PROJECT_FOLDER:/=\%Plugins\Carla\Binaries",
|
|
"%UE4_PROJECT_FOLDER:/=\%Plugins\Carla\Intermediate",
|
|
"%UE4_PROJECT_FOLDER:/=\%.vs"
|
|
) do (
|
|
if exist %%G (
|
|
echo %FILE_N% Cleaning %%G
|
|
rmdir /s/q %%G
|
|
)
|
|
)
|
|
|
|
rem Remove files
|
|
for %%G in (
|
|
"%UE4_PROJECT_FOLDER:/=\%CarlaUE4.sln"
|
|
) do (
|
|
if exist %%G (
|
|
echo %FILE_N% Cleaning %%G
|
|
del %%G
|
|
)
|
|
)
|
|
)
|
|
|
|
rem Launch Carla Editor
|
|
rem
|
|
if %LAUNCH_UE4_EDITOR% == true (
|
|
echo %FILE_N% Launching Unreal Editor...
|
|
call "%UE4_PROJECT_FOLDER%CarlaUE4.uproject"
|
|
if %errorlevel% neq 0 goto error_build
|
|
)
|
|
|
|
goto good_exit
|
|
|
|
rem ============================================================================
|
|
rem -- Messages and Errors -----------------------------------------------------
|
|
rem ============================================================================
|
|
|
|
:help
|
|
echo Build LibCarla.
|
|
echo "Usage: %FILE_N% [-h^|--help] [--launch] [--clean]"
|
|
goto good_exit
|
|
|
|
:error_build
|
|
echo.
|
|
echo %FILE_N% [ERROR] There was a problem building CarlaUE4.
|
|
echo %FILE_N% Please go to "Carla\Unreal\CarlaUE4", right click on
|
|
echo %FILE_N% "CarlaUE4.uproject" and select:
|
|
echo %FILE_N% "Generate Visual Studio project files"
|
|
echo %FILE_N% Open de generated "CarlaUE4.sln" and try to manually compile it
|
|
echo %FILE_N% and check what is causing the error.
|
|
goto bad_exit
|
|
|
|
:good_exit
|
|
endlocal
|
|
exit /b 0
|
|
|
|
:bad_exit
|
|
endlocal
|
|
exit /b %errorlevel%
|