diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-06-10 08:10:02 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-06-11 13:52:41 (GMT) |
commit | dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e (patch) | |
tree | 0c8e67cea901002f16f17a6de3ade73f7fd3c777 /src/phonon | |
parent | fcfd6399dcccef350addb992067dccdc6bceb9c7 (diff) | |
download | Qt-dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e.zip Qt-dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e.tar.gz Qt-dfb61e59f0a1c2113cc01c99c3fd052efa2b6c8e.tar.bz2 |
fix "make debug" under windows
use relative path for include (like every other subtree does), otherwise
$$fromfile() does not find the file, thus the template is unknown and
thus the generic "first" target is used instead of "debug", which tries a
generic build against non-existing release libs - boom.
Reviewed-by: TrustMe
Diffstat (limited to 'src/phonon')
-rw-r--r-- | src/phonon/phonon.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/phonon/phonon.pro b/src/phonon/phonon.pro index ec7e46a..9e7879f 100644 --- a/src/phonon/phonon.pro +++ b/src/phonon/phonon.pro @@ -1,5 +1,5 @@ TARGET = phonon -include($$QT_SOURCE_TREE/src/qbase.pri) +include(../qbase.pri) PHONON_MAJOR_VERSION = $${QT_MAJOR_VERSION} PHONON_MINOR_VERSION = 3 |