Skip to content

Commit

Permalink
add INSTALL
Browse files Browse the repository at this point in the history
  • Loading branch information
takenori-y committed Mar 10, 2022
1 parent d7fe9a3 commit 36524c8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Installation
------------

### Linux / macOS

If you do not care about build options, simply run
```sh
make
```
in Terminal.

If you would like to customize build options, follow the below procedure:
```sh
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release [OPTIONS]
make -j 4 install
```

### Windows

If you do not care about build options, simply run
```sh
make.bat
```
in DOS prompt.

If you would like to customize build option, follow the below procedure:
```sh
mkdir build
cd build
cmake .. [OPTIONS]
MSBuild -maxcpucount:4 /p:Configuration=Release INSTALL.vcxproj
```

0 comments on commit 36524c8

Please sign in to comment.