demos/spectrum/3rdparty/fftreal/fftreal.pro
changeset 25 e24348a560a6
child 29 b72c6db6890b
equal deleted inserted replaced
23:89e065397ea6 25:e24348a560a6
       
     1 TEMPLATE = lib
       
     2 TARGET   = fftreal
       
     3 
       
     4 # FFTReal
       
     5 HEADERS  += 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
       
    25 HEADERS  += fftreal_wrapper.h
       
    26 SOURCES  += fftreal_wrapper.cpp
       
    27 
       
    28 DEFINES  += FFTREAL_LIBRARY
       
    29 
       
    30 symbian {
       
    31     # Provide unique ID for the generated binary, required by Symbian OS
       
    32     TARGET.UID3 = 0xA000E3FB
       
    33     MMP_RULES += EXPORTUNFROZEN
       
    34 } else {
       
    35     macx {
       
    36         CONFIG += lib_bundle
       
    37     } else {
       
    38         DESTDIR = ../../bin
       
    39     }
       
    40 } 
       
    41 
       
    42