Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ This is a forkable repository that handles the boilerplate of building and integ

## Building

This project and C++ Requests both use CMake. The first step is to make sure all of the submodules are initialized:
This project and C++ Requests both use CMake. Unix users can use the install script to automatically build the project:

```
./install.sh
```

Otherwise, the project can be built manually. The first step is to make sure all of the submodules are initialized:

```
git submodule update --init --recursive
Expand Down
9 changes: 9 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

git submodule update --init --recursive

mkdir build
cd build

cmake ..
make