-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11334 from keymanapp/feat/mac/mcompile_mac
feat(mac): mnemonic layout support 🐘
- Loading branch information
Showing
16 changed files
with
3,187 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.0.126 | ||
18.0.126 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
resources/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/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/builder.inc.sh" | ||
. "${THIS_SCRIPT%/*}/../../resources/build/meson-utils.inc.sh" | ||
## END STANDARD BUILD SCRIPT INCLUDE | ||
|
||
################################ Main script ################################ | ||
|
||
builder_describe \ | ||
"Mnemonic layout recompiler for macOS" \ | ||
"@/common/include" \ | ||
"clean" \ | ||
"configure" \ | ||
"build" \ | ||
"test" | ||
|
||
builder_parse "$@" | ||
|
||
builder_describe_outputs \ | ||
configure build/build.ninja \ | ||
build build/mcompile | ||
|
||
TARGET_PATH="$THIS_SCRIPT_PATH/build" | ||
|
||
builder_run_action clean do_meson_clean | ||
builder_run_action configure do_meson_configure | ||
builder_run_action build do_meson_build | ||
builder_run_action test do_meson_test |
Oops, something went wrong.