From 721df373264e01ac925c621d98d950f428cb15c7 Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Wed, 2 Nov 2022 13:05:20 -0600 Subject: [PATCH] Another small correction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ac811c3..0024e3d3 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ cmake -DCMAKE_BUILD_TYPE=Release ../ make -j8 ``` -The above instructions will produce a release build consisting of a dynamic library and dynamically linked library. To compile a static version (i.e. the executable is not a dynamically linked executable), the cmake command shown above should be replaced with the following cmake command: +The above instructions will produce a release build consisting of a dynamic library and dynamically linked executable. To compile a static version (i.e. the executable is not a dynamically linked executable), the cmake command shown above should be replaced with the following cmake command: ``` cmake -DCMAKE_BUILD_TYPE=Release -Dstatic_libraries=ON -Dstatic_njoy=ON -DCMAKE_EXE_LINKER_FLAGS=-static ../