forked from moritzsternemann/QtTelegramBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQtTelegramBot.pri
47 lines (43 loc) · 1.22 KB
/
QtTelegramBot.pri
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
INCLUDEPATH += $$PWD
QT += core network
SOURCES += \
$$PWD/qttelegrambot.cpp \
$$PWD/networking.cpp \
$$PWD/types/message.cpp \
$$PWD/types/update.cpp \
$$PWD/types/chat.cpp \
$$PWD/types/user.cpp \
$$PWD/types/document.cpp \
$$PWD/types/photosize.cpp \
$$PWD/types/audio.cpp \
$$PWD/types/sticker.cpp \
$$PWD/types/video.cpp \
$$PWD/types/voice.cpp \
$$PWD/types/contact.cpp \
$$PWD/types/location.cpp \
$$PWD/types/callbackquery.cpp
HEADERS += \
$$PWD/qttelegrambot.h \
$$PWD/networking.h \
$$PWD/types/message.h \
$$PWD/types/update.h \
$$PWD/types/chat.h \
$$PWD/types/user.h \
$$PWD/types/file.h \
$$PWD/types/document.h \
$$PWD/types/photosize.h \
$$PWD/types/audio.h \
$$PWD/types/sticker.h \
$$PWD/types/video.h \
$$PWD/types/voice.h \
$$PWD/types/contact.h \
$$PWD/types/location.h \
$$PWD/types/reply/genericreply.h \
$$PWD/types/reply/replykeyboardmarkup.h \
$$PWD/types/reply/replykeyboardhide.h \
$$PWD/types/reply/forcereply.h \
$$PWD/types/callbackquery.h \
$$PWD/types/reply/inlinekeyboardmarkup.h \
$$PWD/types/reply/replykeyboardremove.h
OTHER_FILES += \
$$PWD/README.md