[bt-devel] Bug submission on sourceforge

Martin Gruner bt-devel@crosswire.org
Thu, 17 May 2001 14:38:51 +0200


> In KDevelop, can anyone tell me why my debug settings might be
> greyed in the BibleTime project, but in projects I build they
> can be changed just fine?

KDevelop can manage even the automake Makefile creation system based on the 
project data. We had to switch this off at a certain point due to KDevelop 
limitations. That's why several settings are unavailable.
You can do this via a script, see my example:

file btmake, in ~/:

cd bibletime
make -f Makefile.cvs
configure --prefix=/opt/kde2 --with-qt-dir=/usr/lib/qt2
#--disable-strict  --enable-profile --enable-debug
make

Use the configure options for controlling the compilation process.
I execute this script after every major change in cvs to rebuild the 
Makefiles, otherwise there will be errors.

Martin