Mercurial > hg > vamp-plugin-load-checker
annotate checker.pro @ 4:6f891a9c6434
Make checker with hard-coded knowledge about various plugin types and paths; fix some process management problems
author | Chris Cannam |
---|---|
date | Wed, 13 Apr 2016 12:00:07 +0100 |
parents | 3bae396cf8e0 |
children | 846464771d06 |
rev | line source |
---|---|
Chris@3 | 1 |
Chris@3 | 2 TEMPLATE = app |
Chris@3 | 3 |
Chris@4 | 4 CONFIG += qt stl c++11 exceptions console warn_on |
Chris@3 | 5 QT -= xml network gui widgets |
Chris@3 | 6 |
Chris@3 | 7 # Using the "console" CONFIG flag above should ensure this happens for |
Chris@3 | 8 # normal Windows builds, but this may be necessary when cross-compiling |
Chris@3 | 9 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console |
Chris@3 | 10 |
Chris@4 | 11 QMAKE_CXXFLAGS += -Werror |
Chris@4 | 12 |
Chris@3 | 13 TARGET = checker |
Chris@3 | 14 |
Chris@3 | 15 OBJECTS_DIR = o |
Chris@3 | 16 MOC_DIR = o |
Chris@3 | 17 |
Chris@3 | 18 HEADERS += \ |
Chris@4 | 19 plugincandidates.h \ |
Chris@4 | 20 knownplugins.h |
Chris@3 | 21 |
Chris@3 | 22 SOURCES += \ |
Chris@3 | 23 plugincandidates.cpp \ |
Chris@4 | 24 knownplugins.cpp \ |
Chris@3 | 25 checker.cpp |
Chris@3 | 26 |
Chris@3 | 27 QMAKE_POST_LINK=make -f Makefile.helper |
Chris@3 | 28 |