PDA

View Full Version : qt 3d unload lib3ds library



Bovin
15th August 2013, 09:59
i want to know how to unload lib3ds library in my qt compiler . my system is windows 7!

i am a student .

ChrisW67
16th August 2013, 00:42
Qt is a library not a compiler.

You need to build lib3ds to suit your environment. If you are using Microsoft Visual Studio then you can probably just use the supplied PRJ file. If you are using the MingW compiler you have a bit more work to do and will either need a complete MingW environment, or need to make your own Makefile (seems straightforward enough). This part has nothing to do with Qt.

Then you need to arrange to use the library in your Qt project, something like:


INCLUDEPATH += "c:/path/to/lib3ds/include"
LIBS += -L"c:/path/to/lib3ds/bin" -l3ds

See Declaring Other Libraries