mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-22 02:43:34 +02:00
Update README ans tools scripts
Update README ans tools scripts Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
24
tools/dockcross-cmake-builder.sh
Executable file
24
tools/dockcross-cmake-builder.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if (( $# >= 1 )); then
|
||||
image=$1
|
||||
build_file=build-${image%:*}
|
||||
shift 1
|
||||
|
||||
cmake_arg=$*
|
||||
echo "cmake arg: $cmake_arg"
|
||||
|
||||
#echo "Pulling dockcross/$image"
|
||||
#docker pull dockcross/"$image"
|
||||
|
||||
echo "Make script dockcross-$image"
|
||||
docker run --rm dockcross/"$image" > ./dockcross-"$image"
|
||||
chmod +x ./dockcross-"$image"
|
||||
|
||||
echo "Build $build_file"
|
||||
./dockcross-"$image" cmake -B "$build_file" -S . -G Ninja "$cmake_arg"
|
||||
./dockcross-"$image" ninja -C "$build_file"
|
||||
else
|
||||
echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <cmake arg.>"
|
||||
exit 1
|
||||
fi
|
Reference in New Issue
Block a user