Skip to content

Commit

Permalink
Merge pull request #109 from pjueon/add-prerequisites-info
Browse files Browse the repository at this point in the history
Added prerequisites info to installation guide
  • Loading branch information
pjueon authored Nov 18, 2023
2 parents 93b127e + 6767827 commit 88d30b7
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 88d30b7

Please sign in to comment.