김남규
김남규

Reputation: 11

How to use FMOD tools in QT Creator?

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

Answers (1)

trivelt
trivelt

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

Related Questions