Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,12 @@ case "${cmd}" in
PRESET="${OS_TYPE}-debug-examples"
configure
build
if [[ "${DO_BUNDLE}" == "1" ]]; then
install_bundle
if [[ "${DO_ARCHIVE}" == "1" ]]; then
archive_bundle
fi
fi
;;
release)
BUILD_TYPE="Release"
Expand All @@ -342,6 +348,12 @@ case "${cmd}" in
PRESET="${OS_TYPE}-release-examples"
configure
build
if [[ "${DO_BUNDLE}" == "1" ]]; then
install_bundle
if [[ "${DO_ARCHIVE}" == "1" ]]; then
archive_bundle
fi
fi
;;
clean)
clean
Expand Down
Loading