Files
asio_web/test/webserver_example/webserver_example.pro

39 lines
699 B
Prolog
Raw Permalink Normal View History

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 \
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 \
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}/..
LIBS += -lasio_web
2022-06-30 05:59:32 +02:00
LIBS += -lssl -lcrypto