From 5ba8da07517197b8b0fd7c155bef0ddf492b1db8 Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Tue, 20 May 2025 18:55:23 -0400 Subject: [PATCH] enable additional build types for consumers --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 60dc004..5dd1479 100755 --- a/build.sh +++ b/build.sh @@ -47,9 +47,9 @@ fi if [[ ! -d $BUILD_DIR ]]; then echo -e "${BLUE}==== install required dependencies ====${NC}" if [[ "$BUILD_TYPE" == "Debug" ]]; then - conan install . --output-folder=$BUILD_DIR --build="*" --settings=build_type=$BUILD_TYPE --profile=./sanitized + conan install . --output-folder="$BUILD_DIR" --build="*" --settings=build_type="$BUILD_TYPE" --profile=./sanitized else - conan install . --output-folder=$BUILD_DIR --build=missing + conan install . --output-folder="$BUILD_DIR" --build=missing --settings=build_type="$BUILD_TYPE" fi fi