annotate framework/framework.pro @ 53:de2b3c6479c8

* Introduce new Transform class which contains data necessary to describe the context for a plugin -- the plugin's name and output, the step/block size etc (formerly spread across ExecutionContext and TransformFactory). Other code hasn't been updated to use this yet. * Rename existing Transform stuff to Transformers (because they run Transforms) I'm still not 100% sure about this change, don't rely on it.
author Chris Cannam
date Mon, 05 Nov 2007 15:31:06 +0000
parents 7fbe1c99d5d8
children f2cbe0e89d0f
rev   line source
Chris@45 1 TEMPLATE = lib
Chris@45 2
Chris@45 3 SV_UNIT_PACKAGES =
Chris@45 4 load(../sv.prf)
Chris@45 5
Chris@45 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@45 7 QT += xml
Chris@45 8
Chris@46 9 TARGET = svframework
Chris@45 10
Chris@45 11 DEPENDPATH += ..
Chris@45 12 INCLUDEPATH += . ..
Chris@45 13 OBJECTS_DIR = tmp_obj
Chris@45 14 MOC_DIR = tmp_moc
Chris@45 15
Chris@45 16 HEADERS += Document.h \
Chris@45 17 MainWindowBase.h \
Chris@45 18 SVFileReader.h
Chris@45 19
Chris@45 20 SOURCES += Document.cpp \
Chris@45 21 MainWindowBase.cpp \
Chris@45 22 SVFileReader.cpp
Chris@45 23