summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin McPherson <justin.mcpherson@nokia.com>2010-02-15 01:33:31 (GMT)
committerJustin McPherson <justin.mcpherson@nokia.com>2010-02-15 01:33:31 (GMT)
commite9c56612c633a19c8abbe9215aa46091c454846d (patch)
treed6e4495d1e8a57cddf291672e3ca8d4b40713071
parent0010cbdd14ce167857ae9eb8f539ad7b1205542a (diff)
downloadQt-e9c56612c633a19c8abbe9215aa46091c454846d.zip
Qt-e9c56612c633a19c8abbe9215aa46091c454846d.tar.gz
Qt-e9c56612c633a19c8abbe9215aa46091c454846d.tar.bz2
Use correct path for headers and source in qml.pri.
-rw-r--r--src/multimedia/qml/qml.pri12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/multimedia/qml/qml.pri b/src/multimedia/qml/qml.pri
index a30c3ad..370232e 100644
--- a/src/multimedia/qml/qml.pri
+++ b/src/multimedia/qml/qml.pri
@@ -4,16 +4,16 @@ contains(QT_CONFIG, declarative) {
system(pkg-config --exists \'libpulse >= 0.9.10\') {
DEFINES += QT_MULTIMEDIA_PULSEAUDIO
- HEADERS += qsoundeffect_pulse_p.h
- SOURCES += qsoundeffect_pulse_p.cpp
+ HEADERS += $$PWD/qsoundeffect_pulse_p.h
+ SOURCES += $$PWD/qsoundeffect_pulse_p.cpp
LIBS += -lpulse
} else:x11 {
DEFINES += QT_MULTIMEDIA_QMEDIAPLAYER
- HEADERS += qsoundeffect_qmedia_p.h
- SOURCES += qsoundeffect_qmedia_p.cpp
+ HEADERS += $$PWD/qsoundeffect_qmedia_p.h
+ SOURCES += $$PWD/qsoundeffect_qmedia_p.cpp
} else {
- HEADERS += qsoundeffect_qsound_p.h
- SOURCES += qsoundeffect_qsound_p.cpp
+ HEADERS += $$PWD/qsoundeffect_qsound_p.h
+ SOURCES += $$PWD/qsoundeffect_qsound_p.cpp
}
HEADERS += \