We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 953fa0e commit abd6effCopy full SHA for abd6eff
scripts/build_apple_frameworks.sh
@@ -7,7 +7,7 @@
7
8
set -euxo pipefail
9
10
-MODES=("Release" "Debug")
+MODES=()
11
PRESETS=("ios" "ios-simulator" "macos")
12
# To support backwards compatibility, we want to retain the same output directory.
13
PRESETS_RELATIVE_OUT_DIR=("ios" "simulator" "macos")
@@ -137,6 +137,11 @@ for arg in "$@"; do
137
esac
138
done
139
140
+# If no modes are specified, default to both Release and Debug
141
+if [[ ${#MODES[@]} -eq 0 ]]; then
142
+ MODES=("Release" "Debug")
143
+fi
144
+
145
echo "Building libraries"
146
147
rm -rf "${OUTPUT_DIR}"
0 commit comments