From ff0539eb7e4c7c1ae14d669d3e8e7705d99c98bf Mon Sep 17 00:00:00 2001 From: Ben Auffarth Date: Tue, 9 Jan 2018 15:55:49 +0000 Subject: [PATCH] BUILD_TYPE and LIB_TYPE were switched. Make choices clearer --- Building.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Building.md b/Building.md index c3ef1a3..f43778c 100644 --- a/Building.md +++ b/Building.md @@ -6,10 +6,10 @@ First, install both meson (which requires Python3) and ninja. Then, cd jsoncpp/ - BUILD_TYPE=shared - #BUILD_TYPE=static - LIB_TYPE=debug - #LIB_TYPE=release + BUILD_TYPE=release + #plain, debug, debugoptimized, release, minsize + LIB_TYPE=shared + #LIB_TYPE=static meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE} ninja -v -C build-${LIB_TYPE} test