From a75ded6b41d467bd96654fb9320da04d2c70efdc Mon Sep 17 00:00:00 2001 From: Maxim Samsonov Date: Wed, 30 Nov 2022 21:09:13 +0300 Subject: [PATCH] cmake flag to support upcoming rnp changes (#9092) Upcoming version of rnp (https://github.com/rnpgp/rnp/pull/1943) depends on a new library https://github.com/rnpgp/sexp cmake script can load and build it via FetchContent but this option is disabled by defauly An extra flag is required to enable it cc: @ronaldtse This is a contribution from [RNP](https://www.rnpgp.org) ([GitHub](https://github.com/rnpgp)), a product of [Ribose](https://www.ribose.com) ([GitHub](https://github.com/riboseinc)). --- projects/rnp/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/rnp/build.sh b/projects/rnp/build.sh index 95439b6dc..5a2d7b074 100755 --- a/projects/rnp/build.sh +++ b/projects/rnp/build.sh @@ -48,6 +48,7 @@ cmake \ -DBUILD_SHARED_LIBS=on \ -DBUILD_TESTING=off \ -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ + -DDOWNLOAD_SEXP:BOOL=ON \ $SRC/rnp make -j$(nproc)