41 lines
719 B
Bash
Raw Normal View History

2020-09-25 12:43:53 -04:00
#!/bin/sh
set -e
2021-09-16 22:00:40 -04:00
# Build
build() {
# Use Build Dir
2022-06-25 17:30:08 -04: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 17:32:24 -04:00
fi
cd "build/${MODE}-${ARCH}"
2021-06-24 12:40:34 -04:00
# Create Prefix
local prefix="$(cd ../../; pwd)/out/${MODE}-${ARCH}"
2021-06-24 12:40:34 -04:00
rm -rf "${prefix}"
mkdir -p "${prefix}"
# Build ARM Components
cd arm
2022-03-06 20:13:41 -05:00
cmake --build .
DESTDIR="${prefix}" cmake --install .
2021-06-24 12:40:34 -04:00
cd ../
# Build Native Components
cd native
2022-03-06 20:13:41 -05:00
cmake --build .
DESTDIR="${prefix}" cmake --install .
2021-06-24 12:40:34 -04:00
cd ../
# Exit
cd ../../
}
# Variables
MODE="$1"
ARCH="$2"
shift 2
2021-06-17 17:32:24 -04:00
# Build
2022-07-02 18:14:23 -04:00
build "${MODE}" "${ARCH}"