annotate svgui.pro @ 672:ee99f5c0050c

Add CSVFile option
author Chris Cannam
date Wed, 09 Oct 2013 14:52:09 +0100
parents e11a9d91b86b
children 1a0fdad4af4d 8072264dc61f
rev   line source
chris@617 1
chris@617 2 TEMPLATE = lib
chris@617 3
Chris@624 4 exists(config.pri) {
Chris@624 5 include(config.pri)
Chris@624 6 }
Chris@624 7 win* {
Chris@624 8 !exists(config.pri) {
Chris@624 9 DEFINES += HAVE_BZ2 HAVE_FFTW3 HAVE_FFTW3F HAVE_SNDFILE HAVE_SAMPLERATE HAVE_VAMP HAVE_VAMPHOSTSDK HAVE_RUBBERBAND HAVE_DATAQUAY HAVE_LIBLO HAVE_MAD HAVE_ID3TAG
Chris@624 10 }
Chris@624 11 }
chris@617 12
chris@617 13 CONFIG += staticlib qt thread warn_on stl rtti exceptions
chris@617 14 QT += network xml gui widgets
chris@617 15
chris@617 16 TARGET = svgui
chris@617 17
chris@617 18 DEPENDPATH += . ../svcore
chris@617 19 INCLUDEPATH += . ../svcore
chris@617 20 OBJECTS_DIR = o
chris@617 21 MOC_DIR = o
chris@617 22
chris@617 23 win32-g++ {
chris@617 24 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
chris@617 25 }
chris@617 26 win32-msvc* {
chris@617 27 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
chris@617 28 }
chris@617 29
chris@617 30 HEADERS += layer/Colour3DPlotLayer.h \
chris@617 31 layer/ColourDatabase.h \
chris@617 32 layer/ColourMapper.h \
chris@617 33 layer/ImageLayer.h \
chris@617 34 layer/ImageRegionFinder.h \
chris@617 35 layer/Layer.h \
chris@617 36 layer/LayerFactory.h \
chris@617 37 layer/NoteLayer.h \
chris@617 38 layer/PaintAssistant.h \
chris@617 39 layer/RegionLayer.h \
chris@617 40 layer/SingleColourLayer.h \
chris@617 41 layer/SliceableLayer.h \
chris@617 42 layer/SliceLayer.h \
chris@617 43 layer/SpectrogramLayer.h \
chris@617 44 layer/SpectrumLayer.h \
chris@617 45 layer/TextLayer.h \
chris@617 46 layer/TimeInstantLayer.h \
chris@617 47 layer/TimeRulerLayer.h \
chris@617 48 layer/TimeValueLayer.h \
chris@617 49 layer/WaveformLayer.h
chris@617 50 SOURCES += layer/Colour3DPlotLayer.cpp \
chris@617 51 layer/ColourDatabase.cpp \
chris@617 52 layer/ColourMapper.cpp \
chris@617 53 layer/ImageLayer.cpp \
chris@617 54 layer/ImageRegionFinder.cpp \
chris@617 55 layer/Layer.cpp \
chris@617 56 layer/LayerFactory.cpp \
chris@617 57 layer/NoteLayer.cpp \
chris@617 58 layer/PaintAssistant.cpp \
chris@617 59 layer/RegionLayer.cpp \
chris@617 60 layer/SingleColourLayer.cpp \
chris@617 61 layer/SliceLayer.cpp \
chris@617 62 layer/SpectrogramLayer.cpp \
chris@617 63 layer/SpectrumLayer.cpp \
chris@617 64 layer/TextLayer.cpp \
chris@617 65 layer/TimeInstantLayer.cpp \
chris@617 66 layer/TimeRulerLayer.cpp \
chris@617 67 layer/TimeValueLayer.cpp \
chris@617 68 layer/WaveformLayer.cpp
chris@617 69
chris@617 70 HEADERS += view/Overview.h \
chris@617 71 view/Pane.h \
chris@617 72 view/PaneStack.h \
chris@617 73 view/View.h \
chris@617 74 view/ViewManager.h
chris@617 75 SOURCES += view/Overview.cpp \
chris@617 76 view/Pane.cpp \
chris@617 77 view/PaneStack.cpp \
chris@617 78 view/View.cpp \
chris@617 79 view/ViewManager.cpp
chris@617 80
chris@617 81 HEADERS += widgets/ActivityLog.h \
chris@617 82 widgets/AudioDial.h \
chris@617 83 widgets/ClickableLabel.h \
chris@617 84 widgets/ColourNameDialog.h \
chris@617 85 widgets/CommandHistory.h \
chris@617 86 widgets/CSVFormatDialog.h \
chris@617 87 widgets/Fader.h \
chris@617 88 widgets/InteractiveFileFinder.h \
chris@617 89 widgets/IconLoader.h \
chris@617 90 widgets/ImageDialog.h \
chris@617 91 widgets/ItemEditDialog.h \
chris@617 92 widgets/KeyReference.h \
chris@617 93 widgets/LabelCounterInputDialog.h \
chris@617 94 widgets/LayerTree.h \
chris@617 95 widgets/LayerTreeDialog.h \
chris@617 96 widgets/LEDButton.h \
chris@617 97 widgets/ListInputDialog.h \
chris@617 98 widgets/MIDIFileImportDialog.h \
chris@617 99 widgets/ModelDataTableDialog.h \
chris@617 100 widgets/NotifyingCheckBox.h \
chris@617 101 widgets/NotifyingComboBox.h \
chris@617 102 widgets/NotifyingPushButton.h \
chris@617 103 widgets/NotifyingTabBar.h \
chris@617 104 widgets/Panner.h \
chris@617 105 widgets/PluginParameterBox.h \
chris@617 106 widgets/PluginParameterDialog.h \
chris@617 107 widgets/ProgressDialog.h \
chris@617 108 widgets/PropertyBox.h \
chris@617 109 widgets/PropertyStack.h \
chris@617 110 widgets/RangeInputDialog.h \
chris@617 111 widgets/SelectableLabel.h \
chris@617 112 widgets/SubdividingMenu.h \
chris@617 113 widgets/TextAbbrev.h \
chris@617 114 widgets/Thumbwheel.h \
chris@617 115 widgets/TipDialog.h \
chris@617 116 widgets/TransformFinder.h \
chris@617 117 widgets/WindowShapePreview.h \
chris@617 118 widgets/WindowTypeSelector.h
chris@617 119 SOURCES += widgets/ActivityLog.cpp \
chris@617 120 widgets/AudioDial.cpp \
chris@617 121 widgets/ColourNameDialog.cpp \
chris@617 122 widgets/CommandHistory.cpp \
chris@617 123 widgets/CSVFormatDialog.cpp \
chris@617 124 widgets/Fader.cpp \
chris@617 125 widgets/InteractiveFileFinder.cpp \
chris@617 126 widgets/IconLoader.cpp \
chris@617 127 widgets/ImageDialog.cpp \
chris@617 128 widgets/ItemEditDialog.cpp \
chris@617 129 widgets/KeyReference.cpp \
chris@617 130 widgets/LabelCounterInputDialog.cpp \
chris@617 131 widgets/LayerTree.cpp \
chris@617 132 widgets/LayerTreeDialog.cpp \
chris@617 133 widgets/LEDButton.cpp \
chris@617 134 widgets/ListInputDialog.cpp \
chris@617 135 widgets/MIDIFileImportDialog.cpp \
chris@617 136 widgets/ModelDataTableDialog.cpp \
chris@617 137 widgets/NotifyingCheckBox.cpp \
chris@617 138 widgets/NotifyingComboBox.cpp \
chris@617 139 widgets/NotifyingPushButton.cpp \
chris@617 140 widgets/NotifyingTabBar.cpp \
chris@617 141 widgets/Panner.cpp \
chris@617 142 widgets/PluginParameterBox.cpp \
chris@617 143 widgets/PluginParameterDialog.cpp \
chris@617 144 widgets/ProgressDialog.cpp \
chris@617 145 widgets/PropertyBox.cpp \
chris@617 146 widgets/PropertyStack.cpp \
chris@617 147 widgets/RangeInputDialog.cpp \
chris@617 148 widgets/SelectableLabel.cpp \
chris@617 149 widgets/SubdividingMenu.cpp \
chris@617 150 widgets/TextAbbrev.cpp \
chris@617 151 widgets/Thumbwheel.cpp \
chris@617 152 widgets/TipDialog.cpp \
chris@617 153 widgets/TransformFinder.cpp \
chris@617 154 widgets/WindowShapePreview.cpp \
chris@617 155 widgets/WindowTypeSelector.cpp