From ff0f409d804425103942d4bceec4bc5ed64c7038 Mon Sep 17 00:00:00 2001 From: Paul-Louis Ageneau Date: Wed, 22 Jan 2020 11:08:19 +0100 Subject: [PATCH] Added instructions to build with Makefile --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4c2e2bf..3ad7d2c 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ Submodules: - libjuice: https://github.com/paullouisageneau/libjuice ## Building +### Building with CMake (preferred) ```bash $ git submodule update --init --recursive @@ -33,6 +34,13 @@ $ cmake -DUSE_JUICE=1 -DUSE_GNUTLS=1 .. $ make ``` +### Building directly with Make + +```bash +$ git submodule update --init --recursive +$ make USE_JUICE=1 USE_GNUTLS=1 +``` + ## Example In the following example, note the callbacks are called in another thread.