Hello, I seem to be having a bit of a problem using phonon as well as QSound:lay();
When I try to use QSound:lay();, the only sound I get is the windows error beep(ding), so I decided to use Phonon instead, even though I'm fairly certain it's a bit more resource intensive to use two instances of Phonon (one for media play back and one for environment sound effects to replace QSound). However, I am now having problems with Phonon as well.
I followed to example for Phonon included with the Qt SDK, included all that I needed for phonon, and added the QT += phonon to my project file. Still, I am having undefined reference errors when I try to compile. It doesn't seem that Phonon is being linked to my project properly, am I missing something?
Qt Code:
debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:28: undefined reference to `_imp___ZN6Phonon11MediaSourceC1ERK7QString' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:28: undefined reference to `_imp___ZN6Phonon11MediaObject16setCurrentSourceERKNS_11MediaSourceE' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:28: undefined reference to `_imp___ZN6Phonon11MediaSourceD1Ev' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:29: undefined reference to `_imp___ZN6Phonon11MediaObject4playEv' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:28: undefined reference to `_imp___ZN6Phonon11MediaSourceD1Ev' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:34: undefined reference to `_imp___ZN6Phonon11AudioOutputC1ENS_8CategoryEP7QObject' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:35: undefined reference to `_imp___ZN6Phonon11Me***-build-desktop/../***/***.cpp:36: undefined reference to `_imp___ZN6Phonon11MediaObject15setTickIntervalEi' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:37: undefined reference to `_imp___ZN6Phonon10createPathEPNS_9MediaNodeES1_' debug/***.o:D:\Projects\***-build-desktop/../***/***.cpp:37: undefined reference to `_imp___ZN6Phonon4PathD1Ev'To copy to clipboard, switch view to plain text mode
Bookmarks