demos/spectrum/spectrum.pri
changeset 25 e24348a560a6
equal deleted inserted replaced
23:89e065397ea6 25:e24348a560a6
       
     1 # The following macros allow certain features and debugging output
       
     2 # to be disabled / enabled at compile time.
       
     3 
       
     4 # Debug output from spectrum calculation
       
     5 DEFINES += LOG_SPECTRUMANALYSER
       
     6 
       
     7 # Debug output from waveform generation
       
     8 #DEFINES += LOG_WAVEFORM
       
     9 
       
    10 # Debug output from engine
       
    11 DEFINES += LOG_ENGINE
       
    12 
       
    13 # Dump input data to spectrum analyer, plus artefact data files
       
    14 #DEFINES += DUMP_SPECTRUMANALYSER
       
    15 
       
    16 # Dump captured audio data
       
    17 #DEFINES += DUMP_CAPTURED_AUDIO
       
    18 
       
    19 # Disable calculation of level
       
    20 #DEFINES += DISABLE_LEVEL
       
    21 
       
    22 # Disable calculation of frequency spectrum
       
    23 # If this macro is defined, the FFTReal DLL will not be built
       
    24 #DEFINES += DISABLE_FFT
       
    25 
       
    26 # Disables rendering of the waveform
       
    27 #DEFINES += DISABLE_WAVEFORM
       
    28 
       
    29 # If defined, superimpose the progress bar on the waveform
       
    30 DEFINES += SUPERIMPOSE_PROGRESS_ON_WAVEFORM
       
    31 
       
    32 # Perform spectrum analysis calculation in a separate thread
       
    33 DEFINES += SPECTRUM_ANALYSER_SEPARATE_THREAD
       
    34 
       
    35 # Suppress warnings about strncpy potentially being unsafe, emitted by MSVC
       
    36 win32: DEFINES += _CRT_SECURE_NO_WARNINGS
       
    37