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.

55 lines
982 B
Prolog

8 years ago
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-07T15:25:00
#
#-------------------------------------------------
win32 {
QCA_PATH = d:/prac/qt/lib/qca
}
QT += network xmlpatterns
8 years ago
QT -= gui
CONFIG += c++11
8 years ago
TARGET = EetCpp
TEMPLATE = lib
DEFINES += EETCPP_LIBRARY
release:DESTDIR = $$PWD/../bin/release
debug:DESTDIR = $$PWD/../bin/debug
8 years ago
SOURCES += eetcpp.cpp \
eetrequest.cpp \
eettemplate.cpp \
eetsender.cpp \
eetsigner.cpp \
eetresult.cpp
8 years ago
HEADERS += eetcpp.h\
eetcpp_global.h \
eetrequest.h \
eettemplate.h \
eetsender.h \
eetsigner.h \
eetresult.h
8 years ago
unix {
target.path = /usr/lib
INSTALLS += target
}
win32 {
INCLUDEPATH += $$QCA_PATH/include
}
win32:CONFIG(release, debug|release): LIBS += -L$$QCA_PATH -lqca-qt5
else:win32:CONFIG(debug, debug|release): LIBS += -L$$QCA_PATH -lqca-qt5d
else:unix: LIBS += -lqca-qt5
8 years ago
RESOURCES += \
resource.qrc