annotate base/base.pro @ 299:576be0d0d218

* Merge transform directory from sv-match-alignment branch (the previous comment included notes for this stuff, but I missed it in the actual merge) * Fix crash when a transform fails to create an output model and the thread that created the transform then deletes its input model thinking it's no longer needed, even though the transform run thread is still using it -- fix is to wait() on the transform before returning the null output model
author Chris Cannam
date Fri, 28 Sep 2007 16:15:06 +0000
parents c022976d18e8
children 7aa1de571880
rev   line source
Chris@150 1 TEMPLATE = lib
Chris@150 2
Chris@150 3 SV_UNIT_PACKAGES =
Chris@150 4 load(../sv.prf)
Chris@150 5
Chris@150 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@150 7
Chris@150 8 TARGET = svbase
Chris@150 9
Chris@150 10 DEPENDPATH += .
Chris@150 11 INCLUDEPATH += . ..
Chris@150 12 OBJECTS_DIR = tmp_obj
Chris@150 13 MOC_DIR = tmp_moc
Chris@150 14
Chris@150 15 # Input
Chris@150 16 HEADERS += AudioLevel.h \
Chris@150 17 AudioPlaySource.h \
Chris@150 18 Clipboard.h \
Chris@277 19 ColourDatabase.h \
Chris@277 20 ColourMapper.h \
Chris@150 21 Command.h \
Chris@150 22 CommandHistory.h \
Chris@150 23 Exceptions.h \
Chris@224 24 LogRange.h \
Chris@150 25 Pitch.h \
Chris@150 26 PlayParameterRepository.h \
Chris@150 27 PlayParameters.h \
Chris@150 28 Preferences.h \
Chris@150 29 Profiler.h \
Chris@150 30 PropertyContainer.h \
Chris@189 31 RangeMapper.h \
Chris@150 32 RealTime.h \
Chris@150 33 RecentFiles.h \
Chris@297 34 Resampler.h \
Chris@150 35 ResizeableBitset.h \
Chris@150 36 RingBuffer.h \
Chris@150 37 Scavenger.h \
Chris@150 38 Selection.h \
Chris@297 39 Serialiser.h \
Chris@168 40 StorageAdviser.h \
Chris@150 41 TempDirectory.h \
Chris@286 42 TextAbbrev.h \
Chris@150 43 Thread.h \
Chris@150 44 UnitDatabase.h \
Chris@150 45 Window.h \
Chris@150 46 XmlExportable.h \
Chris@150 47 ZoomConstraint.h
Chris@150 48 SOURCES += AudioLevel.cpp \
Chris@150 49 Clipboard.cpp \
Chris@277 50 ColourDatabase.cpp \
Chris@277 51 ColourMapper.cpp \
Chris@150 52 Command.cpp \
Chris@150 53 CommandHistory.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@150 61 PropertyContainer.cpp \
Chris@189 62 RangeMapper.cpp \
Chris@150 63 RealTime.cpp \
Chris@150 64 RecentFiles.cpp \
Chris@297 65 Resampler.cpp \
Chris@150 66 Selection.cpp \
Chris@297 67 Serialiser.cpp \
Chris@168 68 StorageAdviser.cpp \
Chris@150 69 TempDirectory.cpp \
Chris@286 70 TextAbbrev.cpp \
Chris@150 71 Thread.cpp \
Chris@150 72 UnitDatabase.cpp \
Chris@150 73 XmlExportable.cpp