I'm building my test linux environment and wanted to see if you can
help me with a quick start :)
What command do you run to compile the CVS version of Ogre? (I don't
see a ./configure script, do you edit config files and run make? Etc
etc) I haven't spent any time on this yet - just want pointers to make
life easy :)
Thanks
Andy
The trick is:
./bootstrap
That'll generate the ./configure script.
Thanks,
Mike
After that I usually use the following arguments to configure:
./configure --with-platform=GLX --prefix=/usr --enable-dynamic #(and --
enable-cg if its installed)
After that, the usual make && make install is issued.
Another thing is that for some ogre versions I couldn't get some
plugins installed with 'make install', so I had to copy them manually.
If its your case, then this would do it:
for so in `find $OGRE_BUILDROOT -iname Plugin*.so
do
cp $so $OGRE_DESTDIR/usr/lib/OGRE/
done
for so in `find $OGRE_BUILDROOT -iname Render*.so`
do
cp $so $OGRE_DESTDIR/usr/lib/OGRE/
done
Regards,
Renato.