Mercurial > hg > vamp-plugin-load-checker
comparison helper.pro @ 7:846464771d06
Use qmake for everything, + build static lib too
author | Chris Cannam |
---|---|
date | Thu, 14 Apr 2016 09:42:26 +0100 |
parents | |
children | 25e00373f597 |
comparison
equal
deleted
inserted
replaced
6:61dbb18f2369 | 7:846464771d06 |
---|---|
1 | |
2 TEMPLATE = app | |
3 | |
4 CONFIG += stl c++11 exceptions console warn_on | |
5 CONFIG -= qt | |
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 !win32* { | |
12 QMAKE_CXXFLAGS += -Werror | |
13 } | |
14 | |
15 linux* { | |
16 QMAKE_LFLAGS += -ldl | |
17 } | |
18 | |
19 TARGET = helper | |
20 | |
21 OBJECTS_DIR = o | |
22 MOC_DIR = o | |
23 | |
24 SOURCES += \ | |
25 helper.cpp | |
26 |