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

Last change on this file since 769 was 769, checked in by Dmitry A. Kuminov, 15 years ago

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

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