2023-05-26 09:40:00 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
LIBDIR=../../bin
|
|
|
|
RESDIR=../../resources
|
2023-08-09 11:06:32 +00:00
|
|
|
SRCDIR=../../milepost/src
|
2023-05-26 09:40:00 +00:00
|
|
|
|
|
|
|
INCLUDES="-I$SRCDIR -I$SRCDIR/util -I$SRCDIR/platform -I$SRCDIR/app"
|
|
|
|
LIBS="-L$LIBDIR -lmilepost"
|
2023-08-14 08:26:11 +00:00
|
|
|
FLAGS="-mmacos-version-min=10.15.4 -DOC_DEBUG -DLOG_COMPILE_DEBUG"
|
2023-05-26 09:40:00 +00:00
|
|
|
|
|
|
|
if [ ! \( -e bin \) ] ; then
|
|
|
|
mkdir ./bin
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
clang -g $FLAGS $LIBS $INCLUDES -o ./bin/test_files main.c
|
|
|
|
install_name_tool -add_rpath "@executable_path/../../../bin" ./bin/test_files
|