spiegel-keyman/ios/samples/common.inc.sh
Marc Durdin 0d27ac91f7 maint(mac): use mac_ prefix for functions in mac.inc.sh
* Also renames resources/environment.sh to resources/build/mac/xcode-environment.inc.sh.
* Adds a few more exclusions to linux/scripts/dist.sh

Fixes: #14478
Test-bot: skip
Build-bot: build
2025-08-20 05:40:32 +02:00

59 lines
No EOL
1.6 KiB
Bash
Executable file

#!/usr/bin/env bash
# Keyman is copyright (C) SIL Global. MIT License.
# This script is included by each sample build.sh. Accordingly, it inherits
# builder-full.inc.sh from the including script.
. "$KEYMAN_ROOT/resources/build/utils.inc.sh"
. "$KEYMAN_ROOT/resources/build/mac/mac.inc.sh"
function do_build() {
# Copy resources.
cp -Rf "$KEYMAN_ENGINE_FRAMEWORK_SRC" "$KEYMAN_ENGINE_FRAMEWORK_DST"
CODE_SIGN=
if builder_is_debug_build; then
CODE_SIGN=CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED="NO" CODE_SIGNING_ENTITLEMENTS=""
fi
mac_xcodebuild -quiet \
$CODE_SIGN \
-target "$TARGET" \
-config "$CONFIG"
}
function execute_sample_build() {
if [ -z "$TARGET" ]; then
builder_die "Usage of `execute_sample_build` must specify a target iOS sample project"
fi
builder_describe "Builds sample app $TARGET that demos the Keyman Engine for iPhone and iPad" \
"@/ios/engine build" \
"clean" \
"configure" \
"build" \
"--sim-artifact+ Unused by this build at present"
builder_parse "$@"
mac_verify_on_mac
local CONFIG=Release
if builder_is_debug_build; then
CONFIG="Debug"
fi
local BUILD_FOLDER="ios/samples/$TARGET/build"
builder_describe_outputs \
build "/$BUILD_FOLDER"
### START OF THE BUILD ###
# NOT local b/c they're needed by do_build.
KEYMAN_ENGINE_FRAMEWORK_SRC="$KEYMAN_ROOT/ios/build/Build/Products/$CONFIG/KeymanEngine.xcframework"
KEYMAN_ENGINE_FRAMEWORK_DST=./
builder_run_action clean rm -rf "$KEYMAN_ROOT/$BUILD_FOLDER"
builder_run_action build do_build
}