Mercurial > hg > vamp-plugin-load-checker
comparison 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 |
comparison
equal
deleted
inserted
replaced
3:3bae396cf8e0 | 4:6f891a9c6434 |
---|---|
1 | 1 |
2 TEMPLATE = app | 2 TEMPLATE = app |
3 | 3 |
4 CONFIG += qt stl c++11 exceptions console | 4 CONFIG += qt stl c++11 exceptions console warn_on |
5 QT -= xml network gui widgets | 5 QT -= xml network gui widgets |
6 | 6 |
7 # Using the "console" CONFIG flag above should ensure this happens for | 7 # Using the "console" CONFIG flag above should ensure this happens for |
8 # normal Windows builds, but this may be necessary when cross-compiling | 8 # normal Windows builds, but this may be necessary when cross-compiling |
9 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console | 9 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console |
10 | |
11 QMAKE_CXXFLAGS += -Werror | |
10 | 12 |
11 TARGET = checker | 13 TARGET = checker |
12 | 14 |
13 OBJECTS_DIR = o | 15 OBJECTS_DIR = o |
14 MOC_DIR = o | 16 MOC_DIR = o |
15 | 17 |
16 HEADERS += \ | 18 HEADERS += \ |
17 plugincandidates.h | 19 plugincandidates.h \ |
20 knownplugins.h | |
18 | 21 |
19 SOURCES += \ | 22 SOURCES += \ |
20 plugincandidates.cpp \ | 23 plugincandidates.cpp \ |
24 knownplugins.cpp \ | |
21 checker.cpp | 25 checker.cpp |
22 | 26 |
23 QMAKE_POST_LINK=make -f Makefile.helper | 27 QMAKE_POST_LINK=make -f Makefile.helper |
24 | 28 |