I have installed libsndfile on my Windows 7 computer and I am using Qt creator to build my app. I need to use the libsndfile for my app to read and write audio files, however I can't seem to be able to link the library to my Qt creator Project.

What I have done so far is in the .pro file I added (according to my paths on my computer):

LIBS += -l libsndfile-1 LIBS += -LC:/Program Files/Mega-Nerd/libsndfile/lib

INCLUDEPATH += C:/Program Files/Mega-Nerd/libsndfile/include

Then I thought that

include "sndfile.h" //would work but I get the error

sndfile.h : No such file or directory.

Can anyone help me understand how to link libraries correctly and what am I doing wrong?

Thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.