diff options
author | David Faure <faure@kde.org> | 2013-03-23 15:22:21 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-03-25 09:26:52 +0100 |
commit | daa8e229dae3b1bc727428f9836c9ae026d357f5 (patch) | |
tree | 16844f2df618d065ffe0f0acfd5d705a45041f27 /examples/multimedia | |
parent | 0f9ae06f317d3aab07b35010a11ef0658afbec22 (diff) | |
download | qtmultimedia-daa8e229dae3b1bc727428f9836c9ae026d357f5.tar.gz |
Disable FFT when building in static mode
This is because fftreal's pro file says:
static: error(This library cannot be built for static linkage)
Found due to a CI failure on win32-msvc2010_static_Windows_7.
Change-Id: I2a4630410fa7a1bb4e6ab158a4f7ae76d5cacd8a
Reviewed-by: Holger Ihrig <holger.ihrig@gmail.com>
Reviewed-by: Yoann Lopes <yoann.lopes@digia.com>
Diffstat (limited to 'examples/multimedia')
-rw-r--r-- | examples/multimedia/spectrum/spectrum.pri | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/multimedia/spectrum/spectrum.pri b/examples/multimedia/spectrum/spectrum.pri index 75c011311..38b3f1501 100644 --- a/examples/multimedia/spectrum/spectrum.pri +++ b/examples/multimedia/spectrum/spectrum.pri @@ -23,6 +23,8 @@ DEFINES += LOG_ENGINE # If this macro is defined, the FFTReal DLL will not be built #DEFINES += DISABLE_FFT +static: DEFINES += DISABLE_FFT + # Disables rendering of the waveform #DEFINES += DISABLE_WAVEFORM |