Mercurial > hg > vamp-plugin-load-checker
annotate checker.pri @ 7:846464771d06
Use qmake for everything, + build static lib too
author | Chris Cannam |
---|---|
date | Thu, 14 Apr 2016 09:42:26 +0100 |
parents | |
children | 25e00373f597 |
rev | line source |
---|---|
Chris@7 | 1 |
Chris@7 | 2 CONFIG += qt stl c++11 exceptions console warn_on |
Chris@7 | 3 QT -= xml network gui widgets |
Chris@7 | 4 |
Chris@7 | 5 !win32 { |
Chris@7 | 6 QMAKE_CXXFLAGS += -Werror |
Chris@7 | 7 } |
Chris@7 | 8 |
Chris@7 | 9 OBJECTS_DIR = o |
Chris@7 | 10 MOC_DIR = o |
Chris@7 | 11 |
Chris@7 | 12 HEADERS += \ |
Chris@7 | 13 plugincandidates.h \ |
Chris@7 | 14 knownplugins.h |
Chris@7 | 15 |
Chris@7 | 16 SOURCES += \ |
Chris@7 | 17 plugincandidates.cpp \ |
Chris@7 | 18 knownplugins.cpp |
Chris@7 | 19 |
Chris@7 | 20 |