Hi!

I have a problem including libraries into my project.
This is my .pro file:
################################################## ####################
# Automatically generated by qmake (2.01a) lˆ jun 28 15:48:05 2008
################################################## ####################

TEMPLATE = app
TARGET =
DEPENDPATH += . src ui
INCLUDEPATH += . src

# Input
HEADERS += src/hasp.h \
src/hasp_hl.h \
src/mainwindowimpl.h
FORMS += ui/mainwindow.ui
SOURCES += src/hasp.cpp \
src/main.cpp \
src/mainwindowimpl.cpp
LIBS += -L/Users/bnilsson/Qt/PAMS/lib -llibhasp_darwin.a
I do "qmake", and when I open the Xcode project, there is no libhasp_darwin.a in the project, and of course it does not link.

What am I doing wrong?
(Of course, the library is where it is supposed to be, I double checked)

I am using MacOSX 10.5.3, Qt4.4.

BN