Hello !
I’m running ubuntu 13.04 and i’m using qt5 . I want to make my application play a small .wav file at a certain event but for that i found out that i need to include the multimedia module but when i do that it says “Unknown module(s) in QT: multimedia” .
#-------------------------------------------------
#
# Project created by QtCreator 2012-06-24T12:27:41
#
#-------------------------------------------------
QT += core gui widgets
QT += multimedia
TARGET = CptShutWin
TEMPLATE = app
win32:RC_FILE += myapp.rc
SOURCES += main.cpp\
mainwindow.cpp \
setpassword.cpp \
askpassword.cpp \
note.cpp \
addnote.cpp \
focuslineedit.cpp \
getlinuxpass.cpp
HEADERS += mainwindow.h \
setpassword.h \
askpassword.h \
note.h \
addnote.h \
focuslineedit.h \
getlinuxpass.h
FORMS += \
mainwindow.ui \
setpassword.ui \
askpassword.ui \
addnote.ui \
getlinuxpass.ui
Any ideas?
↧