mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-07-02 11:43:40 +02:00
README.md: document cmake version and custom apt for ubuntu 16.04 and 18.04
This commit is contained in:
parent
787c5e4bf5
commit
062ce45798
1 changed files with 13 additions and 1 deletions
14
README.md
14
README.md
|
|
@ -15,10 +15,22 @@ You will need `openssl` development files (version 1.1 or later) to compile and
|
||||||
|
|
||||||
#### Dependencies
|
#### Dependencies
|
||||||
|
|
||||||
|
This project uses CMake version 3.15 to build the source code.
|
||||||
|
|
||||||
**Ubuntu:**
|
**Ubuntu:**
|
||||||
```sh
|
```sh
|
||||||
$ apt-get install gcc g++ cmake libssl-dev
|
$ apt-get install gcc g++ cmake libssl-dev
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On ubuntu 16.04 and 18.04 you most likley will get `CMake 3.15 or higher is required. You are running version <xxx>`
|
||||||
|
You can obtain a newer version from [kitware](https://apt.kitware.com):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add -
|
||||||
|
$ sudo apt-add-repository "deb https://apt.kitware.com/ubuntu/ `lsb_release -cs` main"
|
||||||
|
$ sudo apt-get install cmake
|
||||||
|
```
|
||||||
|
|
||||||
**For other linux distributions:**
|
**For other linux distributions:**
|
||||||
|
|
||||||
Consult the manual for how to get these installed.
|
Consult the manual for how to get these installed.
|
||||||
|
|
@ -50,7 +62,7 @@ $ cmake .. && make
|
||||||
|
|
||||||
#### Dependencies
|
#### Dependencies
|
||||||
|
|
||||||
Download and install `cmake` from [cmake.org](https://cmake.org) and download
|
Download and install `cmake` version `3.15` or newer from [cmake.org](https://cmake.org) and download
|
||||||
[openssl](https://mirror.firedaemon.com/OpenSSL/openssl-1.1.1e-dev.zip)
|
[openssl](https://mirror.firedaemon.com/OpenSSL/openssl-1.1.1e-dev.zip)
|
||||||
|
|
||||||
unpack `openssl-1.1.1e-dev.zip` somewhere on the filesystem.
|
unpack `openssl-1.1.1e-dev.zip` somewhere on the filesystem.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue