minecraft-pi-reborn/scripts/build.sh

43 lines
737 B
Bash
Raw Normal View History

2020-09-25 16:43:53 +00:00
#!/bin/sh
set -e
2021-09-17 02:00:40 +00:00
# Build
build() {
# Use Build Dir
2022-06-25 21:30:08 +00:00
if [ ! -f "build/${MODE}-${ARCH}/arm/build.ninja" ] || [ ! -f "build/${MODE}-${ARCH}/native/build.ninja" ]; then
./scripts/setup.sh "${MODE}" "${ARCH}"
2021-06-17 21:32:24 +00:00
fi
cd "build/${MODE}-${ARCH}"
2021-06-24 16:40:34 +00:00
# Create Prefix
2022-07-30 02:13:03 +00:00
if [ -z "${DESTDIR+x}" ]; then
export DESTDIR="$(cd ../../; pwd)/out/${MODE}-${ARCH}"
rm -rf "${DESTDIR}"
mkdir -p "${DESTDIR}"
fi
2021-06-24 16:40:34 +00:00
# Build ARM Components
cd arm
2022-03-07 01:13:41 +00:00
cmake --build .
2022-07-30 02:13:03 +00:00
cmake --install .
2021-06-24 16:40:34 +00:00
cd ../
# Build Native Components
cd native
2022-03-07 01:13:41 +00:00
cmake --build .
2022-07-30 02:13:03 +00:00
cmake --install .
2021-06-24 16:40:34 +00:00
cd ../
# Exit
cd ../../
}
# Variables
MODE="$1"
ARCH="$2"
shift 2
2021-06-17 21:32:24 +00:00
# Build
2022-07-02 22:14:23 +00:00
build "${MODE}" "${ARCH}"