Hi,

I have create my own library with QT Creator 2.1 beta 2 and then I got a ".a" file :

libPureLight.a

I try to use it in a small application, well, I use the following line in my pro file :

win32:CONFIG(release, debug|release): LIBS += $$quote(D:/Business/studio/PureLight-build-desktop/release/libPureLight.a)
else:win32:CONFIG(debug, debug|release): LIBS += $$quote(D:/Business/studio/PureLight-build-desktop/debug/libPureLight.a)
But I got the following message :

undefined reference to '_imp__CreateScene" , where CreateScene is a method of the library !
So, how it is possible ?