Added developer's helper scripts for Windows

This commit is contained in:
Greg Zharun 2014-06-13 12:01:06 +03:00
parent f40e53b6c7
commit 784d6933fa
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,13 @@
cd $AD/tracks
export LIBRARY_PATH=$WINGTK/inst/lib:$WINA3/inst/lib
export C_INCLUDE_PATH="$WINGTK/inst/include:$WINA3/inst/include"
export CPLUS_INCLUDE_PATH=$C_INCLUDE_PATH
(
if [ "$1" != "rebuild" ] ; then
./waf build -v
else
./waf clean
if ./waf configure --program-name=Tracks --prefix="/" --bindir="/" --configdir="/share" --noconfirm --no-lv2 --dist-target=mingw ; then ./waf build -v; fi
fi
) 2>&1 | tee $AD/buildlog.txt #"$AD/ardour-build-log.`date +%Y-%m-%d--%H.%M`.txt"