diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-10-11 18:51:52 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-10-11 18:51:52 (GMT) |
commit | 405b55e497120187b9d127f902a5009d0c9430bf (patch) | |
tree | 902ded03f1f191e2087d501a1d0f1ede262f8ee6 /demos/spectrum | |
parent | 22d7d0e10aefa36e7cab90454f04205a5249a2cb (diff) | |
parent | b2cbe3659bb39204922fa43d9f9625a9de2f5e29 (diff) | |
download | Qt-405b55e497120187b9d127f902a5009d0c9430bf.zip Qt-405b55e497120187b9d127f902a5009d0c9430bf.tar.gz Qt-405b55e497120187b9d127f902a5009d0c9430bf.tar.bz2 |
Merge branch 4.7 into qt-master-from-4.7
Diffstat (limited to 'demos/spectrum')
-rw-r--r-- | demos/spectrum/3rdparty/fftreal/fftreal.pro | 2 | ||||
-rw-r--r-- | demos/spectrum/app/app.pro | 11 | ||||
-rw-r--r-- | demos/spectrum/spectrum.pri | 12 |
3 files changed, 16 insertions, 9 deletions
diff --git a/demos/spectrum/3rdparty/fftreal/fftreal.pro b/demos/spectrum/3rdparty/fftreal/fftreal.pro index 6305af4..e5093ba 100644 --- a/demos/spectrum/3rdparty/fftreal/fftreal.pro +++ b/demos/spectrum/3rdparty/fftreal/fftreal.pro @@ -40,7 +40,7 @@ symbian { macx { CONFIG += lib_bundle } else { - !symbian: DESTDIR = ../.. + !symbian: DESTDIR = ../..$${spectrum_build_dir} } # Install diff --git a/demos/spectrum/app/app.pro b/demos/spectrum/app/app.pro index 1ae16e9..a75b41a 100644 --- a/demos/spectrum/app/app.pro +++ b/demos/spectrum/app/app.pro @@ -65,7 +65,7 @@ symbian { LIBS += -F$${fftreal_dir} LIBS += -framework fftreal } else { - LIBS += -L.. + LIBS += -L..$${spectrum_build_dir} LIBS += -lfftreal } } @@ -91,10 +91,8 @@ symbian { DEPLOYMENT += fftreal } } else { + DESTDIR = ..$${spectrum_build_dir} macx { - # Specify directory in which to create spectrum.app bundle - DESTDIR = .. - !contains(DEFINES, DISABLE_FFT) { # Relocate fftreal.framework into spectrum.app bundle framework_dir = ../spectrum.app/Contents/Frameworks @@ -110,10 +108,7 @@ symbian { ../spectrum.app/Contents/MacOS/spectrum } } else { - # Specify directory in which to create spectrum application - DESTDIR = .. - - unix: { + linux-g++*: { # Provide relative path from application to fftreal library QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN } diff --git a/demos/spectrum/spectrum.pri b/demos/spectrum/spectrum.pri index c09aa0d..5773900 100644 --- a/demos/spectrum/spectrum.pri +++ b/demos/spectrum/spectrum.pri @@ -35,3 +35,15 @@ DEFINES += SPECTRUM_ANALYSER_SEPARATE_THREAD # Suppress warnings about strncpy potentially being unsafe, emitted by MSVC win32: DEFINES += _CRT_SECURE_NO_WARNINGS +win32 { + # spectrum_build_dir is defined with a leading slash so that it can + # be used in contexts such as + # ..$${spectrum_build_dir} + # without the result having a trailing slash where spectrum_build_dir + # is undefined. + spectrum_build_dir = /release + if (!debug_and_release|build_pass): CONFIG(debug, debug|release) { + spectrum_build_dir = /debug + } +} + |