Reputation: 11
I want to insert FMOD dll file and header file in my QT Project.
I use QT Creator and I don't know how can I add FMOD api.
What should I do?
Upvotes: 0
Views: 794
Reputation: 1965
You should add headers and libs to your .pro file (look at Adding external library into Qt Creator project). So in this case it will be something like that:
INCLUDEPATH += -"C:\Program Files\FMOD SoundSystem\FMOD Programmers API Win32\api\inc\"
LIBS += "C:\Program Files\FMOD SoundSystem\FMOD Programmers API Win32\api\lib\ -libfmodex"
Upvotes: 2