39c6c57bf3
Add github CI and builder scripts (dockcross) Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
curl https://raw.githubusercontent.com/dockcross/dockcross/master/Makefile -o dockcross-Makefile
|
|
make -f dockcross-Makefile display_images
|
|
|
|
source $(dirname "$0")/functions/cmake_fn.sh
|
|
|
|
for image in $(make -f dockcross-Makefile display_images); do
|
|
cmake_build $image $@
|
|
done
|