Added client and server commands to build

This commit is contained in:
Marc Garcia Puig 2019-02-12 12:26:49 +01:00
parent aa82535da4
commit d9c733bad3
3 changed files with 14 additions and 2 deletions

View File

@ -63,10 +63,8 @@ If you build Carla for the first time or after you clean the project it will pro
Example of building Carla 0.9.0 for first time:
```cmd
1) git clone https://github.com/carla-simulator/carla.git
2) Download https://drive.google.com/uc?id=1FtC00CrDb7Kz5StBAwb6vqOGbzZtpROx&export=download
3) Extract to Unreal/CarlaUE4/Content/Carla
4) make launch
```

View File

@ -42,6 +42,12 @@ benchmark: LibCarla
PythonAPI: LibCarla
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --py3
server: setup
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --server
client: setup
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --client
.PHONY: LibCarla
LibCarla: setup
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildLibCarla.bat" --server --client

View File

@ -44,6 +44,14 @@ for developers:
Build and package the Python API module for Python 2 and 3.
Server:
Build the "Server" LibCarla library configuration.
Client:
Build the "Client" LibCarla library configuration.
LibCarla:
Build the LibCarla library, both "Server" and "Client" configurations.