2018-07-26 18:41:20 +08:00
|
|
|
@echo off
|
|
|
|
setlocal
|
|
|
|
|
2018-07-31 22:35:02 +08:00
|
|
|
rem BAT script that creates the client and the server of LibCarla (carla.org).
|
|
|
|
rem Run it through a cmd with the x64 Visual C++ Toolset enabled.
|
|
|
|
|
2018-07-26 18:41:20 +08:00
|
|
|
set LOCAL_PATH=%~dp0
|
2018-07-31 22:35:02 +08:00
|
|
|
set "FILE_N=-[%~n0]:"
|
2018-07-26 18:41:20 +08:00
|
|
|
|
|
|
|
rem ============================================================================
|
|
|
|
rem -- Parse arguments ---------------------------------------------------------
|
|
|
|
rem ============================================================================
|
|
|
|
|
|
|
|
set DOC_STRING=Build LibCarla.
|
|
|
|
set "USAGE_STRING=Usage: %FILE_N% [-h^|--help] [--rebuild] [--server] [--client] [--clean]"
|
|
|
|
|
|
|
|
set REMOVE_INTERMEDIATE=false
|
|
|
|
set BUILD_SERVER=false
|
|
|
|
set BUILD_CLIENT=false
|
|
|
|
|
|
|
|
:arg-parse
|
|
|
|
if not "%1"=="" (
|
|
|
|
if "%1"=="--rebuild" (
|
|
|
|
set REMOVE_INTERMEDIATE=true
|
|
|
|
set BUILD_SERVER=true
|
|
|
|
set BUILD_CLIENT=true
|
|
|
|
)
|
|
|
|
|
|
|
|
if "%1"=="--server" (
|
|
|
|
set BUILD_SERVER=true
|
|
|
|
)
|
|
|
|
|
|
|
|
if "%1"=="--client" (
|
|
|
|
set BUILD_CLIENT=true
|
|
|
|
)
|
|
|
|
|
|
|
|
if "%1"=="--clean" (
|
|
|
|
set REMOVE_INTERMEDIATE=true
|
|
|
|
)
|
|
|
|
|
|
|
|
if "%1"=="-h" (
|
|
|
|
echo %DOC_STRING%
|
|
|
|
echo %USAGE_STRING%
|
|
|
|
GOTO :eof
|
|
|
|
)
|
|
|
|
|
|
|
|
if "%1"=="--help" (
|
|
|
|
echo %DOC_STRING%
|
|
|
|
echo %USAGE_STRING%
|
|
|
|
GOTO :eof
|
|
|
|
)
|
|
|
|
|
|
|
|
shift
|
|
|
|
goto :arg-parse
|
|
|
|
)
|
|
|
|
|
|
|
|
if %REMOVE_INTERMEDIATE% == false (
|
|
|
|
if %BUILD_SERVER% == false (
|
|
|
|
if %BUILD_CLIENT% == false (
|
|
|
|
echo Nothing selected to be done.
|
|
|
|
goto :eof
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
rem Set the visual studio solution directory
|
|
|
|
rem
|
2018-07-27 22:16:58 +08:00
|
|
|
set LIBCARLA_VSPROJECT_PATH=%INSTALLATION_DIR%libcarla-visualstudio
|
2018-07-27 14:31:12 +08:00
|
|
|
|
2018-07-27 22:16:58 +08:00
|
|
|
set LIBCARLA_SERVER_INSTALL_PATH=%ROOT_PATH%Unreal\CarlaUE4\Plugins\Carla\CarlaDependencies
|
2018-07-30 22:52:29 +08:00
|
|
|
set LIBCARLA_CLIENT_INSTALL_PATH=%ROOT_PATH%PythonAPI\dependencies
|
2018-07-26 18:41:20 +08:00
|
|
|
|
2018-07-27 14:31:12 +08:00
|
|
|
if %REMOVE_INTERMEDIATE% == true (
|
2018-07-31 22:35:02 +08:00
|
|
|
echo.
|
|
|
|
|
|
|
|
echo %FILE_N% Cleaning "%LIBCARLA_SERVER_INSTALL_PATH%"
|
2018-07-27 22:16:58 +08:00
|
|
|
if exist "%LIBCARLA_SERVER_INSTALL_PATH%" rmdir /S /Q "%LIBCARLA_SERVER_INSTALL_PATH%"
|
2018-07-31 22:35:02 +08:00
|
|
|
|
|
|
|
echo %FILE_N% Cleaning "%LIBCARLA_CLIENT_INSTALL_PATH%"
|
|
|
|
if exist "%LIBCARLA_CLIENT_INSTALL_PATH%" rmdir /S /Q "%LIBCARLA_CLIENT_INSTALL_PATH%"
|
2018-07-27 14:31:12 +08:00
|
|
|
)
|
|
|
|
|
2018-07-27 22:16:58 +08:00
|
|
|
if not exist "%LIBCARLA_VSPROJECT_PATH%" mkdir "%LIBCARLA_VSPROJECT_PATH%"
|
2018-07-30 22:52:29 +08:00
|
|
|
cd "%LIBCARLA_VSPROJECT_PATH%"
|
2018-07-26 18:41:20 +08:00
|
|
|
|
|
|
|
rem Build libcarla server
|
|
|
|
rem
|
2018-07-30 22:52:29 +08:00
|
|
|
if %BUILD_SERVER% == true if not exist "%LIBCARLA_SERVER_INSTALL_PATH%" (
|
2018-07-31 22:35:02 +08:00
|
|
|
cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Server -DCMAKE_CXX_FLAGS_RELEASE="/MD /MP" -DCMAKE_INSTALL_PREFIX=%LIBCARLA_SERVER_INSTALL_PATH% %ROOT_PATH%
|
|
|
|
if %errorlevel% neq 0 goto error_cmake
|
|
|
|
|
2018-07-26 18:41:20 +08:00
|
|
|
cmake --build . --config Release --target install
|
2018-07-31 22:35:02 +08:00
|
|
|
if %errorlevel% neq 0 goto error_install
|
2018-07-26 18:41:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
rem Build libcarla client
|
|
|
|
rem
|
2018-07-30 22:52:29 +08:00
|
|
|
if %BUILD_CLIENT% == true if not exist "%LIBCARLA_CLIENT_INSTALL_PATH%" (
|
2018-07-31 22:35:02 +08:00
|
|
|
cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Client -DCMAKE_CXX_FLAGS_RELEASE="/MD /MP" -DCMAKE_INSTALL_PREFIX=%LIBCARLA_CLIENT_INSTALL_PATH% %ROOT_PATH%
|
|
|
|
if %errorlevel% neq 0 goto error_cmake
|
|
|
|
|
2018-07-27 14:31:12 +08:00
|
|
|
cmake --build . --config Release --target install
|
2018-07-31 22:35:02 +08:00
|
|
|
if %errorlevel% neq 0 goto error_install
|
2018-07-26 18:41:20 +08:00
|
|
|
)
|
2018-07-31 22:35:02 +08:00
|
|
|
|
|
|
|
goto success
|
|
|
|
|
|
|
|
rem ============================================================================
|
|
|
|
rem -- Messages and Errors -----------------------------------------------------
|
|
|
|
rem ============================================================================
|
|
|
|
|
|
|
|
:success
|
|
|
|
echo.
|
2018-08-24 00:27:35 +08:00
|
|
|
if %BUILD_SERVER% == true echo %FILE_N% LibCarla server has been successfully installed in "%LIBCARLA_SERVER_INSTALL_PATH%"!
|
2018-07-31 22:35:02 +08:00
|
|
|
if %BUILD_CLIENT% == true echo %FILE_N% LibCarla client has been successfully installed in "%LIBCARLA_CLIENT_INSTALL_PATH%"!
|
|
|
|
goto good_exit
|
|
|
|
|
|
|
|
:error_cmake
|
|
|
|
echo.
|
|
|
|
echo %FILE_N% [CMAKE ERROR] An error ocurred while executing the cmake.
|
|
|
|
echo %FILE_N% [CMAKE ERROR] Possible causes:
|
|
|
|
echo %FILE_N% - Make sure "CMake" is installed.
|
|
|
|
echo %FILE_N% - Make sure it is available on your Windows "path".
|
|
|
|
echo %FILE_N% - CMake 3.9.0 or higher is required.
|
|
|
|
goto bad_exit
|
|
|
|
|
|
|
|
:error_install
|
|
|
|
echo.
|
|
|
|
echo %FILE_N% [Visual Studio 15 2017 Win64 ERROR] An error ocurred while installing using Visual Studio 15 2017 Win64.
|
|
|
|
echo %FILE_N% [Visual Studio 15 2017 Win64 ERROR] Possible causes:
|
|
|
|
echo %FILE_N% - Make sure you have Visual Studio installed.
|
|
|
|
echo %FILE_N% - Make sure you have the "x64 Visual C++ Toolset" in your path.
|
|
|
|
echo %FILE_N% For example using the "Visual Studio x64 Native Tools Command Prompt",
|
|
|
|
echo %FILE_N% or the "vcvarsall.bat".
|
|
|
|
goto bad_exit
|
|
|
|
|
|
|
|
:good_exit
|
|
|
|
endlocal
|
|
|
|
exit /b 0
|
|
|
|
|
|
|
|
:bad_exit
|
|
|
|
endlocal
|
|
|
|
exit /b %errorlevel%
|