summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-25 10:32:50 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-25 10:35:09 +0000
commit8ebad1aa287ed77c33820dbcf2a9163cfe878d9c (patch)
tree18c20e535949977fad1a71b73b060612cade746e /README.md
parentae1e20f4cd781b9b6ac2abf781cced8cad1fb39f (diff)
Change README to talk about cmake instead of autoreconf.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4da86795..5b38f372 100644
--- a/README.md
+++ b/README.md
@@ -41,12 +41,11 @@ on the website, where they are updated at least once every 24 hours:
41Detailed installation instructions can be found in [INSTALL.md](INSTALL.md). 41Detailed installation instructions can be found in [INSTALL.md](INSTALL.md).
42 42
43In a nutshell, if you have [libsodium](https://github.com/jedisct1/libsodium) 43In a nutshell, if you have [libsodium](https://github.com/jedisct1/libsodium)
44or [nacl](https://nacl.cr.yp.to/install.html) installed, run: 44installed, run:
45 45
46```sh 46```sh
47autoreconf -fi
48mkdir _build && cd _build 47mkdir _build && cd _build
49../configure 48cmake ..
50make 49make
51sudo make install 50sudo make install
52``` 51```