Skip to content

Commit

Permalink
Added prerequisites info to installation guide
Browse files Browse the repository at this point in the history
  • Loading branch information
pjueon committed Nov 18, 2023
1 parent 93b127e commit 6767827
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/installation_guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Installation Guide
This document describes how to build and install the *JetsonGPIO* from the source code.

### 0. Prerequisites
To build *JetsonGPIO* from the source code, the following prerequisites are needed:

- `git` (for cloning the source code from GitHub)
- `CMake` (3.2 or higher)
- A C++ compiler that supports C++11 (ex> `g++`, `clang`, etc)
- Build automation tools (ex> `GNU Make`, `Ninja`, etc)

### 1. Clone the repository.
```
git clone https://github.com/pjueon/JetsonGPIO
Expand Down Expand Up @@ -27,7 +37,7 @@ cmake .. [OPTIONS]
sudo cmake --build . --target install
```

# Compiling the Samples
## Compiling the Samples
You can add cmake option `-D BUILD_EXAMPLES=ON` to build example codes in `samples`.
Assuming you are in `build` directory:
```
Expand Down

0 comments on commit 6767827

Please sign in to comment.