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.
34 lines
540 B
Prolog
34 lines
540 B
Prolog
8 years ago
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2017-01-07T15:25:00
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += network xml
|
||
|
|
||
|
QT -= gui
|
||
|
|
||
|
TARGET = EetCpp
|
||
|
TEMPLATE = lib
|
||
|
|
||
|
DEFINES += EETCPP_LIBRARY
|
||
|
|
||
|
SOURCES += eetcpp.cpp \
|
||
|
eetrequest.cpp \
|
||
|
eettemplate.cpp \
|
||
|
eetsender.cpp
|
||
|
|
||
|
HEADERS += eetcpp.h\
|
||
|
eetcpp_global.h \
|
||
|
eetrequest.h \
|
||
|
eettemplate.h \
|
||
|
eetsender.h
|
||
|
|
||
|
unix {
|
||
|
target.path = /usr/lib
|
||
|
INSTALLS += target
|
||
|
}
|
||
|
|
||
|
RESOURCES += \
|
||
|
resource.qrc
|