source: trunk/demos/spectrum/3rdparty/fftreal/fftreal.pro

Last change on this file was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 1.3 KB
Line 
1include(../../spectrum.pri)
2
3static: error(This library cannot be built for static linkage)
4
5TEMPLATE = lib
6TARGET = fftreal
7
8# FFTReal
9HEADERS += Array.h \
10 Array.hpp \
11 DynArray.h \
12 DynArray.hpp \
13 FFTRealFixLen.h \
14 FFTRealFixLen.hpp \
15 FFTRealFixLenParam.h \
16 FFTRealPassDirect.h \
17 FFTRealPassDirect.hpp \
18 FFTRealPassInverse.h \
19 FFTRealPassInverse.hpp \
20 FFTRealSelect.h \
21 FFTRealSelect.hpp \
22 FFTRealUseTrigo.h \
23 FFTRealUseTrigo.hpp \
24 OscSinCos.h \
25 OscSinCos.hpp \
26 def.h
27
28# Wrapper used to export the required instantiation of the FFTRealFixLen template
29HEADERS += fftreal_wrapper.h
30SOURCES += fftreal_wrapper.cpp
31
32DEFINES += FFTREAL_LIBRARY
33
34symbian {
35 # Provide unique ID for the generated binary, required by Symbian OS
36 TARGET.UID3 = 0xA000E403
37 TARGET.CAPABILITY = UserEnvironment
38}
39
40macx {
41 CONFIG += lib_bundle
42} else {
43 !symbian: DESTDIR = ../..$${spectrum_build_dir}
44}
45
46# Install
47
48sources.files = $$SOURCES $$HEADERS fftreal.pro readme.txt license.txt
49sources.files += bwins/fftreal.def eabi/fftreal.def
50sources.path = $$[QT_INSTALL_DEMOS]/spectrum/3rdparty/fftreal
51INSTALLS += sources
52
Note: See TracBrowser for help on using the repository browser.