Mercurial > hg > svapp
annotate framework/framework.pro @ 221:e06a0124c662 templating
Add ReplaceSession open mode for audio files, which discards the session
and creates a new one using the template if available. Currently this is
available as an additional option in the AskUser mode dialog -- this might
bear future simplification. Addresses first bit of #148
author | Chris Cannam |
---|---|
date | Wed, 27 Apr 2011 14:46:06 +0100 |
parents | 84b2c1a4984a |
children |
rev | line source |
---|---|
Chris@45 | 1 TEMPLATE = lib |
Chris@45 | 2 |
Chris@133 | 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk # required because we use transform headers |
Chris@169 | 4 load(../prf/sv.prf) |
Chris@45 | 5 |
Chris@45 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@180 | 7 QT += xml network |
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@180 | 18 SVFileReader.h \ |
Chris@180 | 19 VersionTester.h |
Chris@45 | 20 |
Chris@45 | 21 SOURCES += Document.cpp \ |
Chris@45 | 22 MainWindowBase.cpp \ |
Chris@180 | 23 SVFileReader.cpp \ |
Chris@180 | 24 VersionTester.cpp |
Chris@45 | 25 |