Skip to content

Commit

Permalink
add linter instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
rrhan0 committed Oct 13, 2024
1 parent 7dd636a commit 3c3625a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ sudo apt update && sudo apt upgrade -y
sudo apt install cmake libssl-dev nghttp2 libopencv-dev libcurl4-openssl-dev -y
```

Now go to the ArenaSDK download page and download the latest version of the SDK. Extract the contents of the folder and put it into the external directory.
Now go to the ArenaSDK download page and download the latest version of the SDK.
Extract the contents of the folder and put it into the external directory.

Follow the README for Arena SDK for Linux to install the SDK.
## Build Instructions
Expand All @@ -34,6 +35,14 @@ make -j$(nproc)
```
> ***Note:*** Use ``-DCMAKE_BUILD_TYPE=Debug`` for debug information.
Use ``-DCMAKE_BUILD_TYPE=Release`` for production.

## Linter and Formatter
```
pip install cpplint
clang-format -i src/*.cpp src/*.h
cpplint src/*.cpp src/*.h
```

### Python ArenaSDK

* Place the ArenaSDK wheel file in `wheel` directory.
Expand Down

0 comments on commit 3c3625a

Please sign in to comment.