Skip to content

Commit

Permalink
README: Add CMake instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Sep 20, 2017
1 parent b1b8e27 commit 7f6440e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,25 @@ applications. The data is stored as a character array.

### **Building:**

#### 'configure' script:

To build native binary, run: `./configure && make && sudo make install`

To build python version, run: `./configure --type=s && make && sudo make install`

#### CMake (native binary only):

Build in source root directory:

```sh
cmake ./ && make && sudo make install
```

Build in separate directory:

```sh
mkdir build
cd build
cmake ../
make && sudo make install
```

0 comments on commit 7f6440e

Please sign in to comment.