Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesadi committed Jan 5, 2024
1 parent ffa85e1 commit 0924805
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,18 @@ $ sudo apt install ninja-build cmake python3 gcc g++
```
Build and install Pluto to `./install` directory:
```
$ mkdir -p build
$ cmake -G Ninja -S . -B build \
-DCMAKE_C_COMPILER="gcc" \
-DCMAKE_CXX_COMPILER="g++" \
-DCMAKE_INSTALL_PREFIX="install" \
-DCMAKE_BUILD_TYPE=Release
$ ninja -j`nproc` -C build install
```
Or:
```
$ ./build.sh
```
```

## Usage
// TODO

0 comments on commit 0924805

Please sign in to comment.