
Fri, 01/02/2004 - 12:28
Forums:
hi everyone,
We are developing a full fledged CAD/CAM package based on Linux-Red Hat Linux 8.0.We are using Qt 3.1 as our front end and Opencascade for all our CAD functions.But we facing severe problems with it.With the given example , we r not able to recompile the example so that we can get a clear idea of how a viewer is implemented using Opencascade , if anyone can help us we will be very thankful to him/her.
Sat, 01/10/2004 - 19:32
OCC only compiles with qt 2.3 not 3.xxx
So do not need to make a decent downgrade !
You only have to install qt2.3 on your machine (no need to scratch 3.1 from your harddisk), an set the following code up in your .profile-script (if you use the bash-shell):
QTDIR=/usr/lib/qt2
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
export QTDIR MANPATH
Then it should compile fine.
MCV
Fri, 01/30/2004 - 10:05
why not try implementing it fully using Qt only?