-
Notifications
You must be signed in to change notification settings - Fork 1
/
file-server.pro
46 lines (42 loc) · 927 Bytes
/
file-server.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
TEMPLATE = app
QMAKE_CXXFLAGS += -std=c++17
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
commandlinereader.cpp \
configuration.cpp \
dataview.cpp \
filesystemmodel.cpp \
filewebserver.cpp \
htmlcontengenerator.cpp \
httpconnection.cpp \
main.cpp
HEADERS += \
Mustache/catch.hpp \
Mustache/mustache.hpp \
commandlinereader.h \
configurable.h \
configuration.h \
configurationreader.h \
filewebserver.h \
datamodel.h \
filesystemmodel.h \
dataview.h \
fsizeenum.h \
generator.h \
htmlcontentgenerator.h \
httpconnection.h
OTHER_FILES += \
folder_view.html.mustashe
LIBS += -L/mingw64/lib/ -lwsock32 -lws2_32
INCLUDEPATH += /mingw64/include/
CONFIG(debug, debug|release) {
LIBS += \
-lboost_system-mt \
-lboost_program_options-mt \
-lstdc++fs
}
CONFIG(release, debug|release) {
DEFINES += NDEBUG
}