annotate base/base.pro @ 631:3a5ee4b6c9ad

* Complete the overhaul of CSV file import; now you can pick the purpose for each column in the file, and SV should do the rest. The most significant practical improvement here is that we can now handle files in which time and duration do not necessarily appear in known columns.
author Chris Cannam
date Mon, 19 Jul 2010 17:08:56 +0000
parents 35499d48a5d1
children 1a4c76e0f7c5
rev   line source
Chris@150 1 TEMPLATE = lib
Chris@150 2
Chris@150 3 SV_UNIT_PACKAGES =
Chris@580 4 load(../prf/sv.prf)
Chris@150 5
Chris@150 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@387 7 QT -= gui
Chris@150 8
Chris@150 9 TARGET = svbase
Chris@150 10
Chris@150 11 DEPENDPATH += .
Chris@150 12 INCLUDEPATH += . ..
Chris@150 13 OBJECTS_DIR = tmp_obj
Chris@150 14 MOC_DIR = tmp_moc
Chris@150 15
Chris@150 16 # Input
Chris@150 17 HEADERS += AudioLevel.h \
Chris@150 18 AudioPlaySource.h \
Chris@150 19 Clipboard.h \
Chris@150 20 Command.h \
Chris@150 21 Exceptions.h \
Chris@224 22 LogRange.h \
Chris@150 23 Pitch.h \
Chris@391 24 Playable.h \
Chris@150 25 PlayParameterRepository.h \
Chris@150 26 PlayParameters.h \
Chris@150 27 Preferences.h \
Chris@150 28 Profiler.h \
Chris@392 29 ProgressPrinter.h \
Chris@392 30 ProgressReporter.h \
Chris@150 31 PropertyContainer.h \
Chris@189 32 RangeMapper.h \
Chris@150 33 RealTime.h \
Chris@150 34 RecentFiles.h \
Chris@297 35 Resampler.h \
Chris@150 36 ResizeableBitset.h \
Chris@150 37 RingBuffer.h \
Chris@150 38 Scavenger.h \
Chris@150 39 Selection.h \
Chris@297 40 Serialiser.h \
Chris@168 41 StorageAdviser.h \
Chris@629 42 StringBits.h \
Chris@150 43 TempDirectory.h \
Chris@457 44 TextMatcher.h \
Chris@150 45 Thread.h \
Chris@150 46 UnitDatabase.h \
Chris@387 47 ViewManagerBase.h \
Chris@150 48 Window.h \
Chris@150 49 XmlExportable.h \
Chris@150 50 ZoomConstraint.h
Chris@150 51 SOURCES += AudioLevel.cpp \
Chris@150 52 Clipboard.cpp \
Chris@150 53 Command.cpp \
Chris@150 54 Exceptions.cpp \
Chris@224 55 LogRange.cpp \
Chris@150 56 Pitch.cpp \
Chris@150 57 PlayParameterRepository.cpp \
Chris@150 58 PlayParameters.cpp \
Chris@150 59 Preferences.cpp \
Chris@150 60 Profiler.cpp \
Chris@392 61 ProgressPrinter.cpp \
Chris@392 62 ProgressReporter.cpp \
Chris@150 63 PropertyContainer.cpp \
Chris@189 64 RangeMapper.cpp \
Chris@150 65 RealTime.cpp \
Chris@150 66 RecentFiles.cpp \
Chris@297 67 Resampler.cpp \
Chris@150 68 Selection.cpp \
Chris@297 69 Serialiser.cpp \
Chris@168 70 StorageAdviser.cpp \
Chris@629 71 StringBits.cpp \
Chris@150 72 TempDirectory.cpp \
Chris@457 73 TextMatcher.cpp \
Chris@150 74 Thread.cpp \
Chris@150 75 UnitDatabase.cpp \
Chris@396 76 ViewManagerBase.cpp \
Chris@150 77 XmlExportable.cpp