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