-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkiosk.pro
60 lines (52 loc) · 1.33 KB
/
kiosk.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
TEMPLATE = app
CONFIG += console c++17
CONFIG -= app_bundle
CONFIG -= qt
CONFIG -= c++11
CONFIG += c++17
QMAKE_CXXFLAGS += -std=c++17
QMAKE_LFLAGS += -std=c++17
LIBS += -lstdc++fs
CONFIG += static
LIBS += -pthread -ldl
INCLUDEPATH += $$quote($$PWD/json/single_include/)
DEPENDPATH += $$quote($$PWD/json/single_include/)
INCLUDEPATH += $$quote($$PWD/stb)
DEPENDPATH += $$quote($$PWD/stb)
QMAKE_CXXFLAGS += $$system(pkg-config --cflags sdl2 SDL2_image SDL2_ttf libcurl)
LIBS += $$system(pkg-config --libs sdl2 SDL2_image SDL2_ttf libcurl)
SOURCES += \
fontrenderer.cpp \
main.cpp \
modules/eventsview.cpp \
modules/infoview.cpp \
modules/mateview.cpp \
modules/screensaver.cpp \
module.cpp \
modules/mainmenu.cpp \
gui_module.cpp \
widget.cpp \
widgets/button.cpp \
modules/lightroom.cpp \
modules/tramview.cpp \
http_client.cpp \
modules/powerview.cpp
HEADERS += \
fontrenderer.hpp \
modules/eventsview.hpp \
modules/infoview.hpp \
modules/mateview.hpp \
modules/screensaver.hpp \
module.hpp \
kiosk.hpp \
modules/mainmenu.hpp \
gui_module.hpp \
protected_value.hpp \
rect_tools.hpp \
rendering.hpp \
widget.hpp \
widgets/button.hpp \
modules/lightroom.hpp \
modules/tramview.hpp \
http_client.hpp \
modules/powerview.hpp