Mercurial > hg > svapp
annotate svapp.pro @ 588:d122d3595a32
Store aggregate models in the document and release them when they are invalidated (because their components have been released). They're no longer leaked, but we still don't save them in the session file.
author | Chris Cannam |
---|---|
date | Mon, 27 Feb 2017 16:26:37 +0000 |
parents | 227291052aa9 |
children |
rev | line source |
---|---|
chris@264 | 1 |
chris@264 | 2 TEMPLATE = lib |
chris@264 | 3 |
Chris@518 | 4 INCLUDEPATH += ../vamp-plugin-sdk |
Chris@518 | 5 |
Chris@265 | 6 exists(config.pri) { |
Chris@265 | 7 include(config.pri) |
Chris@265 | 8 } |
chris@264 | 9 |
Chris@439 | 10 CONFIG += staticlib qt thread warn_on stl rtti exceptions c++11 |
chris@264 | 11 QT += network xml gui widgets |
chris@264 | 12 |
chris@264 | 13 TARGET = svapp |
chris@264 | 14 |
Chris@528 | 15 DEPENDPATH += . ../bqaudioio ../svcore ../svgui ../piper-cpp |
Chris@528 | 16 INCLUDEPATH += . ../bqaudioio ../svcore ../svgui ../piper-cpp |
chris@264 | 17 OBJECTS_DIR = o |
chris@264 | 18 MOC_DIR = o |
chris@264 | 19 |
Chris@530 | 20 include(files.pri) |
Chris@305 | 21 |
Chris@530 | 22 HEADERS = $$(SVAPP_HEADERS) |
Chris@530 | 23 SOURCES = $$(SVAPP_SOURCES) |
chris@264 | 24 |