diff data/data.pro @ 320:32e50b620a6c

* Move some things around to facilitate plundering libraries for other applications without needing to duplicate so much code. sv/osc -> data/osc sv/audioio -> audioio sv/transform -> plugin/transform sv/document -> document (will rename to framework in next commit)
author Chris Cannam
date Wed, 24 Oct 2007 16:34:31 +0000
parents c324d410b096
children b92513201610
line wrap: on
line diff
--- a/data/data.pro	Wed Oct 24 15:21:38 2007 +0000
+++ b/data/data.pro	Wed Oct 24 16:34:31 2007 +0000
@@ -1,6 +1,6 @@
 TEMPLATE = lib
 
-SV_UNIT_PACKAGES = fftw3f sndfile mad quicktime id3tag oggz fishsound
+SV_UNIT_PACKAGES = fftw3f sndfile mad quicktime id3tag oggz fishsound liblo
 load(../sv.prf)
 
 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
@@ -8,8 +8,8 @@
 
 TARGET = svdata
 
-DEPENDPATH += fft fileio model ..
-INCLUDEPATH += . fft model fileio ..
+DEPENDPATH += fft fileio model osc ..
+INCLUDEPATH += . fft fileio model osc ..
 OBJECTS_DIR = tmp_obj
 MOC_DIR = tmp_moc
 
@@ -61,7 +61,9 @@
            model/SparseValueModel.h \
            model/TextModel.h \
            model/WaveFileModel.h \
-           model/WritableWaveFileModel.h
+           model/WritableWaveFileModel.h \
+           osc/OSCMessage.h \
+           osc/OSCQueue.h 
 SOURCES += fft/FFTapi.cpp \
            fft/FFTDataServer.cpp \
            fft/FFTFileCache.cpp \
@@ -98,4 +100,6 @@
            model/PowerOfTwoZoomConstraint.cpp \
            model/RangeSummarisableTimeValueModel.cpp \
            model/WaveFileModel.cpp \
-           model/WritableWaveFileModel.cpp
+           model/WritableWaveFileModel.cpp \
+           osc/OSCMessage.cpp \
+           osc/OSCQueue.cpp