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!