annotate 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
rev   line source
Chris@3 1
Chris@3 2 TEMPLATE = app
Chris@3 3
Chris@3 4 CONFIG += qt stl c++11 exceptions console
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@3 11 TARGET = checker
Chris@3 12
Chris@3 13 OBJECTS_DIR = o
Chris@3 14 MOC_DIR = o
Chris@3 15
Chris@3 16 HEADERS += \
Chris@3 17 plugincandidates.h
Chris@3 18
Chris@3 19 SOURCES += \
Chris@3 20 plugincandidates.cpp \
Chris@3 21 checker.cpp
Chris@3 22
Chris@3 23 QMAKE_POST_LINK=make -f Makefile.helper
Chris@3 24