1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00
QXlsx/WebServer/WebServer.pro

47 lines
666 B
Prolog
Raw Normal View History

2018-11-14 14:01:22 +09:00
# WebServer.pro
2020-05-23 00:34:30 +09:00
2018-11-14 14:01:22 +09:00
TARGET = WebServer
TEMPLATE = app
QT += core
QT += network
QT -= gui
CONFIG += console
CONFIG -= app_bundle
# C++14 or higher version is required.
2023-01-04 13:08:48 +09:00
# CONFIG += c++14
# QMAKE_CXXFLAGS += -std=c++14
# C++17 or higher version is required.
CONFIG += c++17
QMAKE_CXXFLAGS += -std=c++17
2018-11-14 14:01:22 +09:00
macx {
QMAKE_CXXFLAGS += -stdlib=libc++
}
# NOTE: You can fix value of QXlsx path of source code.
# QXLSX_PARENTPATH=./
# QXLSX_HEADERPATH=./header/
# QXLSX_SOURCEPATH=./source/
include(../QXlsx/QXlsx.pri)
# source code
RESOURCES += \
ws.qrc
HEADERS += \
recurse.hpp \
request.hpp \
response.hpp \
context.hpp
INCLUDEPATH += .
SOURCES += \
main.cpp