Recurse into QuesoGLC directory for building. Not fully complete, since we cannot yet use the result of that.

Need to investigate further on howto best setup autotools to accomplish that.


git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@2713 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2007-11-04 16:29:20 +00:00
parent 6268b6fff2
commit 7ca4f62452
3 changed files with 15 additions and 1 deletions

View File

@ -1,4 +1,4 @@
SUBDIRS = build_tools win32 lib src data po doc icons nsis
SUBDIRS = 3rdparty/quesoglc build_tools win32 lib src data po doc icons nsis
dist_doc_DATA = AUTHORS ChangeLog README COPYING COPYING.README

View File

@ -127,6 +127,17 @@ automake -a -c --foreign || {
exit 1
}
# Setup QuesoGLC
if test -d "${SRCDIR}/3rdparty/quesoglc" ; then
echo "+++ Recursing into QuesoGLC +++"
cd 3rdparty/quesoglc
./bootstrap
cd ../..
echo "+++ Finished QuesoGLC +++"
fi
# Chdir back to the builddir before the configure step.
cd $BUILDDIR

View File

@ -4,6 +4,9 @@ AC_PREREQ(2.56)
AC_INIT([Warzone 2100],[TRUNK],[http://wz2100.net/],[warzone2100])
AM_INIT_AUTOMAKE([1.8])
if test -d "${top_srcdir}/3rdparty/quesoglc" ; then
AC_CONFIG_SUBDIRS([3rdparty/quesoglc])
fi
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([lib/framework/frame.c])