annotate base/base.pro @ 637:465f769ccad0

* More updates to build system, intended to support platforms both with and without pkg-config (though we really want to be able to switch pkg-config off)
author Chris Cannam
date Thu, 16 Sep 2010 14:40:52 +0100
parents 1a4c76e0f7c5
children
rev   line source
Chris@150 1 TEMPLATE = lib
Chris@150 2
Chris@636 3 include(../config.pri)
Chris@150 4
Chris@636 5 CONFIG += staticlib qt thread warn_on stl rtti exceptions
Chris@387 6 QT -= gui
Chris@150 7
Chris@150 8 TARGET = svbase
Chris@150 9
Chris@150 10 DEPENDPATH += .
Chris@150 11 INCLUDEPATH += . ..
Chris@150 12 OBJECTS_DIR = tmp_obj
Chris@150 13 MOC_DIR = tmp_moc
Chris@150 14
Chris@150 15 # Input
Chris@150 16 HEADERS += AudioLevel.h \
Chris@150 17 AudioPlaySource.h \
Chris@150 18 Clipboard.h \
Chris@150 19 Command.h \
Chris@150 20 Exceptions.h \
Chris@224 21 LogRange.h \
Chris@150 22 Pitch.h \
Chris@391 23 Playable.h \
Chris@150 24 PlayParameterRepository.h \
Chris@150 25 PlayParameters.h \
Chris@150 26 Preferences.h \
Chris@150 27 Profiler.h \
Chris@392 28 ProgressPrinter.h \
Chris@392 29 ProgressReporter.h \
Chris@150 30 PropertyContainer.h \
Chris@189 31 RangeMapper.h \
Chris@150 32 RealTime.h \
Chris@150 33 RecentFiles.h \
Chris@297 34 Resampler.h \
Chris@150 35 ResizeableBitset.h \
Chris@150 36 RingBuffer.h \
Chris@150 37 Scavenger.h \
Chris@150 38 Selection.h \
Chris@297 39 Serialiser.h \
Chris@168 40 StorageAdviser.h \
Chris@629 41 StringBits.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@629 70 StringBits.cpp \
Chris@150 71 TempDirectory.cpp \
Chris@457 72 TextMatcher.cpp \
Chris@150 73 Thread.cpp \
Chris@150 74 UnitDatabase.cpp \
Chris@396 75 ViewManagerBase.cpp \
Chris@150 76 XmlExportable.cpp