39 lines
699 B
Prolog
39 lines
699 B
Prolog
TEMPLATE = app
|
|
|
|
QT += core
|
|
|
|
CONFIG += c++latest
|
|
|
|
HEADERS += \
|
|
chunkedresponsehandler.h \
|
|
debugresponsehandler.h \
|
|
errorresponsehandler.h \
|
|
examplewebserver.h \
|
|
rootresponsehandler.h \
|
|
websocketresponsehandler.h
|
|
|
|
SOURCES += \
|
|
chunkedresponsehandler.cpp \
|
|
debugresponsehandler.cpp \
|
|
errorresponsehandler.cpp \
|
|
examplewebserver.cpp \
|
|
main.cpp \
|
|
rootresponsehandler.cpp \
|
|
websocketresponsehandler.cpp
|
|
|
|
unix: TARGET=webserver_example.bin
|
|
DESTDIR=$${OUT_PWD}/..
|
|
INCLUDEPATH += $$PWD/..
|
|
|
|
include(../paths.pri)
|
|
|
|
include(../dependencies.pri)
|
|
|
|
unix: {
|
|
LIBS += -Wl,-rpath=\\\$$ORIGIN
|
|
}
|
|
LIBS += -L$${OUT_PWD}/..
|
|
LIBS += -lasio_web
|
|
|
|
LIBS += -lssl -lcrypto
|