Mercurial > hg > vamp-plugin-load-checker
diff checker.pro @ 3:3bae396cf8e0
Start to organise as a Qt project, with a main (command-line) executable
author | Chris Cannam |
---|---|
date | Wed, 13 Apr 2016 09:12:04 +0100 |
parents | |
children | 6f891a9c6434 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/checker.pro Wed Apr 13 09:12:04 2016 +0100 @@ -0,0 +1,24 @@ + +TEMPLATE = app + +CONFIG += qt stl c++11 exceptions console +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 + +TARGET = checker + +OBJECTS_DIR = o +MOC_DIR = o + +HEADERS += \ + plugincandidates.h + +SOURCES += \ + plugincandidates.cpp \ + checker.cpp + +QMAKE_POST_LINK=make -f Makefile.helper +