2022-06-30 01:35:02 +02:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
|
QT += core
|
|
|
|
|
|
|
|
|
|
CONFIG += c++latest
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
2022-06-30 02:08:09 +02:00
|
|
|
chunkedresponsehandler.h \
|
2022-06-30 01:35:02 +02:00
|
|
|
debugresponsehandler.h \
|
|
|
|
|
errorresponsehandler.h \
|
|
|
|
|
examplewebserver.h \
|
2022-06-30 05:59:32 +02:00
|
|
|
rootresponsehandler.h \
|
2022-06-30 06:55:32 +02:00
|
|
|
websocketresponsehandler.h
|
2022-06-30 01:35:02 +02:00
|
|
|
|
|
|
|
|
SOURCES += \
|
2022-06-30 02:08:09 +02:00
|
|
|
chunkedresponsehandler.cpp \
|
2022-06-30 01:35:02 +02:00
|
|
|
debugresponsehandler.cpp \
|
|
|
|
|
errorresponsehandler.cpp \
|
|
|
|
|
examplewebserver.cpp \
|
|
|
|
|
main.cpp \
|
2022-06-30 05:59:32 +02:00
|
|
|
rootresponsehandler.cpp \
|
2022-06-30 06:55:32 +02:00
|
|
|
websocketresponsehandler.cpp
|
2022-06-30 01:35:02 +02:00
|
|
|
|
|
|
|
|
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}/..
|
2022-07-05 13:07:36 +02:00
|
|
|
LIBS += -lasio_web
|
2022-06-30 05:59:32 +02:00
|
|
|
|
|
|
|
|
LIBS += -lssl -lcrypto
|