You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
478 B
23 lines
478 B
#!/bin/sh
|
|
|
|
CAKELISP_DIR=Dependencies/cakelisp
|
|
|
|
# Build Cakelisp itself
|
|
echo "\n\nCakelisp\n\n"
|
|
cd $CAKELISP_DIR
|
|
./Build.sh || exit $?
|
|
|
|
cd ../..
|
|
|
|
echo "\n\nAuto Color\n\n"
|
|
|
|
CAKELISP=./Dependencies/cakelisp/bin/cakelisp
|
|
|
|
# We can't run the full app yet until I set up SDL to build under Mingw
|
|
$CAKELISP --verbose-processes \
|
|
src/Config_Mingw.cake \
|
|
src/AutoColorCLI.cake || exit $?
|
|
|
|
rsync /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/libgcc_s_seh-1.dll .
|
|
|
|
wine AutoColor.exe
|
|
|