blob: 4f670ef1ad59bb1a386d4a292af1fd4c3b2654f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TARGET = QtJsonDbJsonStream
TEMPLATE = lib
CONFIG += static
QT = core network
HEADERS += jsonstream.h
SOURCES += jsonstream.cpp
# We don't need to install this tool, it's only used for building.
# However we do have to make sure that 'make install' builds it.
dummytarget.CONFIG = dummy_install
INSTALLS += dummytarget
|