Skip to content

Commit

Permalink
README.md: Document compile options.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnx committed Feb 6, 2020
1 parent 38d1658 commit e0397ce
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,18 @@ C:\repo\build> cmake -D OPENSSL_ROOT_DIR="C:/path/to/openssl-1.1/x86" ..
C:\repo\build> cmake --build . --config Release
```

## Compile options

These compile options are available:

| Cmake | build.sh | Description |
|--------------------------- | ----------------- | ------------------------------------------|
| -DCMAKE_BUILD_TYPE=`value` | -t `value` | Type of build |
| -DUSE_THREADS=`OFF` | --disable-threads | Disable thread support |
| -DFORCE_ANSI=`ON` | --force-ansi | Force ANSI console colors even on windows |

For more details about options run `./build.sh -l` or `mkdir build && cmake build -LA`

## Install

After the project has been compiled. run `sudo ./install.sh` or the following code if you dont want to use that:
Expand Down

0 comments on commit e0397ce

Please sign in to comment.