0

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?

김남규
  • 11
  • 1
  • 3

1 Answers1

2

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"
Community
  • 1
  • 1
trivelt
  • 1,913
  • 3
  • 22
  • 44