Mercurial > hg > svcore
annotate base/base.pro @ 575:8688430850d6
* either I'm going mad or the compiler is... valgrind and sizeof both
seem to think that reading or writing m_size is reading beyond the end
of the object, unless I add m_spare padding... why?
author | Chris Cannam |
---|---|
date | Mon, 16 Mar 2009 16:32:02 +0000 |
parents | ef14acd6d102 |
children | ebb6ac65bccc |
rev | line source |
---|---|
Chris@150 | 1 TEMPLATE = lib |
Chris@150 | 2 |
Chris@150 | 3 SV_UNIT_PACKAGES = |
Chris@150 | 4 load(../sv.prf) |
Chris@150 | 5 |
Chris@150 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@387 | 7 QT -= gui |
Chris@150 | 8 |
Chris@150 | 9 TARGET = svbase |
Chris@150 | 10 |
Chris@150 | 11 DEPENDPATH += . |
Chris@150 | 12 INCLUDEPATH += . .. |
Chris@150 | 13 OBJECTS_DIR = tmp_obj |
Chris@150 | 14 MOC_DIR = tmp_moc |
Chris@150 | 15 |
Chris@150 | 16 # Input |
Chris@150 | 17 HEADERS += AudioLevel.h \ |
Chris@150 | 18 AudioPlaySource.h \ |
Chris@150 | 19 Clipboard.h \ |
Chris@150 | 20 Command.h \ |
Chris@150 | 21 Exceptions.h \ |
Chris@224 | 22 LogRange.h \ |
Chris@150 | 23 Pitch.h \ |
Chris@391 | 24 Playable.h \ |
Chris@150 | 25 PlayParameterRepository.h \ |
Chris@150 | 26 PlayParameters.h \ |
Chris@150 | 27 Preferences.h \ |
Chris@150 | 28 Profiler.h \ |
Chris@392 | 29 ProgressPrinter.h \ |
Chris@392 | 30 ProgressReporter.h \ |
Chris@150 | 31 PropertyContainer.h \ |
Chris@189 | 32 RangeMapper.h \ |
Chris@150 | 33 RealTime.h \ |
Chris@150 | 34 RecentFiles.h \ |
Chris@297 | 35 Resampler.h \ |
Chris@150 | 36 ResizeableBitset.h \ |
Chris@150 | 37 RingBuffer.h \ |
Chris@150 | 38 Scavenger.h \ |
Chris@150 | 39 Selection.h \ |
Chris@297 | 40 Serialiser.h \ |
Chris@168 | 41 StorageAdviser.h \ |
Chris@150 | 42 TempDirectory.h \ |
Chris@457 | 43 TextMatcher.h \ |
Chris@150 | 44 Thread.h \ |
Chris@150 | 45 UnitDatabase.h \ |
Chris@387 | 46 ViewManagerBase.h \ |
Chris@150 | 47 Window.h \ |
Chris@150 | 48 XmlExportable.h \ |
Chris@150 | 49 ZoomConstraint.h |
Chris@150 | 50 SOURCES += AudioLevel.cpp \ |
Chris@150 | 51 Clipboard.cpp \ |
Chris@150 | 52 Command.cpp \ |
Chris@150 | 53 Exceptions.cpp \ |
Chris@224 | 54 LogRange.cpp \ |
Chris@150 | 55 Pitch.cpp \ |
Chris@150 | 56 PlayParameterRepository.cpp \ |
Chris@150 | 57 PlayParameters.cpp \ |
Chris@150 | 58 Preferences.cpp \ |
Chris@150 | 59 Profiler.cpp \ |
Chris@392 | 60 ProgressPrinter.cpp \ |
Chris@392 | 61 ProgressReporter.cpp \ |
Chris@150 | 62 PropertyContainer.cpp \ |
Chris@189 | 63 RangeMapper.cpp \ |
Chris@150 | 64 RealTime.cpp \ |
Chris@150 | 65 RecentFiles.cpp \ |
Chris@297 | 66 Resampler.cpp \ |
Chris@150 | 67 Selection.cpp \ |
Chris@297 | 68 Serialiser.cpp \ |
Chris@168 | 69 StorageAdviser.cpp \ |
Chris@150 | 70 TempDirectory.cpp \ |
Chris@457 | 71 TextMatcher.cpp \ |
Chris@150 | 72 Thread.cpp \ |
Chris@150 | 73 UnitDatabase.cpp \ |
Chris@396 | 74 ViewManagerBase.cpp \ |
Chris@150 | 75 XmlExportable.cpp |