Mercurial > hg > svcore
comparison 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 |
comparison
equal
deleted
inserted
replaced
319:3ff8f571da09 | 320:32e50b620a6c |
---|---|
1 TEMPLATE = lib | 1 TEMPLATE = lib |
2 | 2 |
3 SV_UNIT_PACKAGES = fftw3f sndfile mad quicktime id3tag oggz fishsound | 3 SV_UNIT_PACKAGES = fftw3f sndfile mad quicktime id3tag oggz fishsound liblo |
4 load(../sv.prf) | 4 load(../sv.prf) |
5 | 5 |
6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
7 QT += network | 7 QT += network |
8 | 8 |
9 TARGET = svdata | 9 TARGET = svdata |
10 | 10 |
11 DEPENDPATH += fft fileio model .. | 11 DEPENDPATH += fft fileio model osc .. |
12 INCLUDEPATH += . fft model fileio .. | 12 INCLUDEPATH += . fft fileio model osc .. |
13 OBJECTS_DIR = tmp_obj | 13 OBJECTS_DIR = tmp_obj |
14 MOC_DIR = tmp_moc | 14 MOC_DIR = tmp_moc |
15 | 15 |
16 # Input | 16 # Input |
17 HEADERS += fft/FFTapi.h \ | 17 HEADERS += fft/FFTapi.h \ |
59 model/SparseOneDimensionalModel.h \ | 59 model/SparseOneDimensionalModel.h \ |
60 model/SparseTimeValueModel.h \ | 60 model/SparseTimeValueModel.h \ |
61 model/SparseValueModel.h \ | 61 model/SparseValueModel.h \ |
62 model/TextModel.h \ | 62 model/TextModel.h \ |
63 model/WaveFileModel.h \ | 63 model/WaveFileModel.h \ |
64 model/WritableWaveFileModel.h | 64 model/WritableWaveFileModel.h \ |
65 osc/OSCMessage.h \ | |
66 osc/OSCQueue.h | |
65 SOURCES += fft/FFTapi.cpp \ | 67 SOURCES += fft/FFTapi.cpp \ |
66 fft/FFTDataServer.cpp \ | 68 fft/FFTDataServer.cpp \ |
67 fft/FFTFileCache.cpp \ | 69 fft/FFTFileCache.cpp \ |
68 fft/FFTMemoryCache.cpp \ | 70 fft/FFTMemoryCache.cpp \ |
69 fileio/AudioFileReader.cpp \ | 71 fileio/AudioFileReader.cpp \ |
96 model/NoteModel.cpp \ | 98 model/NoteModel.cpp \ |
97 model/PowerOfSqrtTwoZoomConstraint.cpp \ | 99 model/PowerOfSqrtTwoZoomConstraint.cpp \ |
98 model/PowerOfTwoZoomConstraint.cpp \ | 100 model/PowerOfTwoZoomConstraint.cpp \ |
99 model/RangeSummarisableTimeValueModel.cpp \ | 101 model/RangeSummarisableTimeValueModel.cpp \ |
100 model/WaveFileModel.cpp \ | 102 model/WaveFileModel.cpp \ |
101 model/WritableWaveFileModel.cpp | 103 model/WritableWaveFileModel.cpp \ |
104 osc/OSCMessage.cpp \ | |
105 osc/OSCQueue.cpp |