Added client and server commands to build
This commit is contained in:
parent
aa82535da4
commit
d9c733bad3
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue