diff 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
line wrap: on
line diff
--- a/checker.pro	Wed Apr 13 09:12:04 2016 +0100
+++ b/checker.pro	Wed Apr 13 12:00:07 2016 +0100
@@ -1,23 +1,27 @@
 
 TEMPLATE = app
 
-CONFIG += qt stl c++11 exceptions console
+CONFIG += qt stl c++11 exceptions console warn_on
 QT -= xml network gui widgets
 
 # Using the "console" CONFIG flag above should ensure this happens for
 # normal Windows builds, but this may be necessary when cross-compiling
 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console
 
+QMAKE_CXXFLAGS += -Werror
+
 TARGET = checker
 
 OBJECTS_DIR = o
 MOC_DIR = o
 
 HEADERS += \
-	plugincandidates.h
+	plugincandidates.h \
+	knownplugins.h
 
 SOURCES += \
 	plugincandidates.cpp \
+	knownplugins.cpp \
 	checker.cpp
 
 QMAKE_POST_LINK=make -f Makefile.helper