Mercurial > hg > svapp
annotate config.pri.in @ 235:1fcee2a1c03e sonification
Add queueExampleNote method to AudioCallbackPlaySource, providing a way to add a note to a special model which is mixed in outside of the normal playback flow. Currently mixing & generation happen in the play thread, which doesn't work very well -- buffer pending.
author | Chris Cannam |
---|---|
date | Fri, 24 Jun 2011 16:44:02 +0100 |
parents | 70b2681665a7 |
children |
rev | line source |
---|---|
Chris@209 | 1 |
Chris@209 | 2 CONFIG += @QMAKE_CONFIG@ |
Chris@198 | 3 |
Chris@198 | 4 DEFINES += @HAVES@ |
Chris@198 | 5 |
Chris@203 | 6 QMAKE_CC = @CC@ |
Chris@203 | 7 QMAKE_CXX = @CXX@ |
Chris@209 | 8 QMAKE_LINK = @CXX@ |
Chris@203 | 9 |
Chris@198 | 10 QMAKE_CFLAGS += @CFLAGS@ |
Chris@198 | 11 QMAKE_CXXFLAGS += @CXXFLAGS@ |
Chris@198 | 12 |
Chris@201 | 13 linux*:LIBS += -lasound |
Chris@201 | 14 |
Chris@201 | 15 macx*:DEFINES += HAVE_QUICKTIME |
Chris@209 | 16 macx*:LIBS += -framework QuickTime -framework CoreAudio -framework CoreMidi -framework AudioUnit -framework AudioToolbox -framework CoreFoundation -framework CoreServices |
Chris@201 | 17 |
Chris@198 | 18 LIBS += @LIBS@ |
Chris@198 | 19 |