82 lines
2.1 KiB
Bash
82 lines
2.1 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
DEBUG_FLAGS="-g -DDEBUG -DLOG_COMPILE_DEBUG"
|
||
|
#DEBUG_FLAGS="-O3"
|
||
|
|
||
|
#--------------------------------------------------------------
|
||
|
# set target
|
||
|
#--------------------------------------------------------------
|
||
|
|
||
|
target="$1"
|
||
|
if [ -z $target ] ; then
|
||
|
target='lib'
|
||
|
fi
|
||
|
|
||
|
shaderFlagParam="$2"
|
||
|
#--------------------------------------------------------------
|
||
|
# Detect OS and set environment variables accordingly
|
||
|
#--------------------------------------------------------------
|
||
|
OS=$(uname -s)
|
||
|
|
||
|
if [ $OS = "Darwin" ] ; then
|
||
|
#echo "Target '$target' for macOS"
|
||
|
CC=clang
|
||
|
CXX=clang++
|
||
|
DYLIB_SUFFIX='dylib'
|
||
|
SYS_LIBS=''
|
||
|
FLAGS="-mmacos-version-min=10.15.4 -DMG_IMPLEMENTS_BACKEND_METAL -maes"
|
||
|
CFLAGS="-std=c11"
|
||
|
|
||
|
elif [ $OS = "Linux" ] ; then
|
||
|
echo "Error: Linux is not supported yet"
|
||
|
exit -1
|
||
|
else
|
||
|
echo "Error: Unsupported OS $OS"
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
#--------------------------------------------------------------
|
||
|
# Set paths
|
||
|
#--------------------------------------------------------------
|
||
|
BINDIR="./bin"
|
||
|
SRCDIR="./src"
|
||
|
RESDIR="./resources"
|
||
|
INCLUDES="-I$SRCDIR -I$SRCDIR/util -I$SRCDIR/platform"
|
||
|
|
||
|
#--------------------------------------------------------------
|
||
|
# Build
|
||
|
#--------------------------------------------------------------
|
||
|
|
||
|
if [ ! \( -e bin \) ] ; then
|
||
|
mkdir ./bin
|
||
|
fi
|
||
|
|
||
|
if [ $target = 'lib' ] ; then
|
||
|
|
||
|
# compile metal shader
|
||
|
xcrun -sdk macosx metal $shaderFlagParam -c -o $BINDIR/metal_shader.air $SRCDIR/metal_shader.metal
|
||
|
xcrun -sdk macosx metallib -o $RESDIR/metal_shader.metallib $BINDIR/metal_shader.air
|
||
|
|
||
|
# compile milepost. We use one compilation unit for all C code, and one compilation
|
||
|
# unit for all ObjectiveC code
|
||
|
$CC $DEBUG_FLAGS -c -o $BINDIR/milepost_c.o $CFLAGS $FLAGS $INCLUDES $SRCDIR/milepost.c
|
||
|
$CC $DEBUG_FLAGS -c -o $BINDIR/milepost_objc.o $FLAGS $INCLUDES $SRCDIR/milepost.mm
|
||
|
|
||
|
# build the static library
|
||
|
libtool -static -o $BINDIR/libmilepost.a $BINDIR/milepost_c.o $BINDIR/milepost_objc.o
|
||
|
|
||
|
else
|
||
|
# additional targets
|
||
|
if [ $target = 'test' ] ; then
|
||
|
pushd examples/test_app
|
||
|
./build.sh
|
||
|
popd
|
||
|
|
||
|
elif [ $target = 'clean' ] ; then
|
||
|
rm -r ./bin
|
||
|
else
|
||
|
echo "unrecognized target $target"
|
||
|
exit -1
|
||
|
fi
|
||
|
fi
|