mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 22:27:39 +00:00
18 lines
648 B
Bash
Executable file
18 lines
648 B
Bash
Executable file
#!/usr/bin/env bash
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "${THIS_SCRIPT%/*}/../../../resources/build/build-utils.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
builder_describe \
|
|
"Build Keyman Developer common files" \
|
|
clean configure build api test publish install \
|
|
":delphi Delphi components" \
|
|
":web Web components"
|
|
|
|
builder_parse "$@"
|
|
builder_run_child_actions clean configure build test
|
|
|
|
# Note: 'api', 'publish', 'install' actions are defined here for commonality with
|
|
# sibling projects but are no-ops
|