You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
664 B
Prolog
42 lines
664 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-01-07T15:25:00
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += network xml xmlpatterns
|
|
|
|
QT -= gui
|
|
|
|
CONFIG += c++11
|
|
|
|
TARGET = EetCpp
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += EETCPP_LIBRARY
|
|
|
|
SOURCES += eetcpp.cpp \
|
|
eetrequest.cpp \
|
|
eettemplate.cpp \
|
|
eetsender.cpp \
|
|
eetsigner.cpp \
|
|
eetresult.cpp
|
|
|
|
HEADERS += eetcpp.h\
|
|
eetcpp_global.h \
|
|
eetrequest.h \
|
|
eettemplate.h \
|
|
eetsender.h \
|
|
eetsigner.h \
|
|
eetresult.h
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
}
|
|
|
|
LIBS += -lqca-qt5
|
|
|
|
RESOURCES += \
|
|
resource.qrc
|