2016-09-20 21:28:03 +02:00
|
|
|
TEMPLATE = app
|
|
|
|
|
TARGET = transactions
|
2016-09-26 12:02:34 +02:00
|
|
|
INCLUDEPATH += . support/cppQt
|
2016-09-20 21:28:03 +02:00
|
|
|
|
|
|
|
|
# Input
|
2016-09-26 12:02:34 +02:00
|
|
|
HEADERS += StreamMethods.h Transaction.h \
|
2017-01-16 10:39:01 +01:00
|
|
|
CMF.h \
|
|
|
|
|
MessageBuilder.h \
|
|
|
|
|
MessageParser.h
|
2016-09-26 12:02:34 +02:00
|
|
|
|
|
|
|
|
SOURCES += main.cpp StreamMethods.cpp Transaction.cpp \
|
2017-01-16 10:39:01 +01:00
|
|
|
CMF.cpp \
|
|
|
|
|
MessageBuilder.cpp \
|
|
|
|
|
MessageParser.cpp
|
2016-09-26 12:02:34 +02:00
|
|
|
|