diff options
| author | yum <yum.food.vr@gmail.com> | 2022-12-15 20:54:19 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2022-12-15 20:54:19 -0800 |
| commit | 16ce2bb119c8e6f6d1e48eaa40fb468adc736528 (patch) | |
| tree | e7c76629891a4601955893fbdaf64d80b87f884e /~GUI/Libraries | |
| parent | 8326dee0bf01956b450858212cbdba3403b32b0d (diff) | |
Add GUI hello world
Literally just the wxWidgets hello world.
~GUI is named that way to prevent Unity from generating .meta files.
Build instructions in ~GUI/README.md.
Diffstat (limited to '~GUI/Libraries')
| -rw-r--r-- | ~GUI/Libraries/.gitignore | 3 | ||||
| -rw-r--r-- | ~GUI/Libraries/fetch.sh | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/~GUI/Libraries/.gitignore b/~GUI/Libraries/.gitignore new file mode 100644 index 0000000..214bffb --- /dev/null +++ b/~GUI/Libraries/.gitignore @@ -0,0 +1,3 @@ +# Don't check in anything we fetch +wx + diff --git a/~GUI/Libraries/fetch.sh b/~GUI/Libraries/fetch.sh new file mode 100644 index 0000000..dcf096c --- /dev/null +++ b/~GUI/Libraries/fetch.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +set -o errexit +set -o xtrace + +WX_3_2_1_URL=https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.zip +WX_URL=$WX_3_2_1_URL + +mkdir wx +pushd wx >/dev/null +wget $WX_URL +unzip $(basename $WX_URL) +popd >/dev/null + |
