demos/spectrum/3rdparty/fftreal/fftreal.pro
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
child 37 758a864f9613
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
       
     1 include(../../spectrum.pri)
       
     2 
     1 TEMPLATE = lib
     3 TEMPLATE = lib
     2 TARGET   = fftreal
     4 TARGET   = fftreal
     3 
     5 
     4 # FFTReal
     6 # FFTReal
     5 HEADERS  += Array.h \
     7 HEADERS  += Array.h \
    27 
    29 
    28 DEFINES  += FFTREAL_LIBRARY
    30 DEFINES  += FFTREAL_LIBRARY
    29 
    31 
    30 symbian {
    32 symbian {
    31     # Provide unique ID for the generated binary, required by Symbian OS
    33     # Provide unique ID for the generated binary, required by Symbian OS
    32     TARGET.UID3 = 0xA000E3FB
    34     TARGET.UID3 = 0xA000E403
    33      MMP_RULES += EXPORTUNFROZEN
    35     TARGET.CAPABILITY = UserEnvironment
       
    36 }
       
    37 
       
    38 macx {
       
    39     CONFIG += lib_bundle
    34 } else {
    40 } else {
    35     macx {
    41     !symbian: DESTDIR = ../..
    36         CONFIG += lib_bundle
    42 }
    37     } else {
       
    38         DESTDIR = ../../bin
       
    39     }
       
    40 } 
       
    41 
    43 
       
    44 # Install
    42 
    45 
       
    46 sources.files = $$SOURCES $$HEADERS fftreal.pro readme.txt license.txt
       
    47 sources.files += bwins/fftreal.def eabi/fftreal.def
       
    48 sources.path = $$[QT_INSTALL_DEMOS]/spectrum/3rdparty/fftreal
       
    49 INSTALLS += sources
       
    50