forked from lightX2/telegrambotlib-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtelegrambotlib-qt.pro
More file actions
41 lines (37 loc) · 1.04 KB
/
telegrambotlib-qt.pro
File metadata and controls
41 lines (37 loc) · 1.04 KB
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
TARGET = telegrambotlib-qt
TEMPLATE = lib
QT += core network
QT -= gui
CONFIG += qt warn_on release exceptions stl embed_manifest_exe precompile_header console suppress_vcproj_warnings c++latest
CONFIG -= flat app_bundle
PRECOMPILED_HEADER = $$PWD/src/stdafx.h
QMAKE_CXXFLAGS_RELEASE -= /O2
QMAKE_CXXFLAGS_RELEASE += /Od
QMAKE_CXXFLAGS += /Zi /MP /W4
QMAKE_LFLAGS += /DEBUG /FIXED:NO
DEFINES += \
BOT_LIB \
QT_DISABLE_DEPRECATED_BEFORE=0x060000 \
QT_DEPRECATED_WARNINGS \
_CRT_SECURE_NO_WARNINGS \
_SCL_SECURE_NO_WARNINGS \
NOMINMAX \
WIN32 \
_WINDOWS
SOURCES += \
$$PWD/src/telegrambot.cpp \
$$PWD/src/jsonhelper.cpp \
$$PWD/modules/sslserver/sslserver.cpp \
$$PWD/modules/httpserver/httpserver.cpp
HEADERS += \
$$PWD/src/common.h \
$$PWD/src/telegrambot.h \
$$PWD/src/jsonhelper.h \
$$PWD/src/telegramdatastructs.h \
$$PWD/modules/sslserver/sslserver.h \
$$PWD/modules/httpserver/httpserver.h
INCLUDEPATH += \
$$PWD/src \
$$PWD/modules/sslserver \
$$PWD/modules/httpserver
include($$PWD/vendor/qdelegate/QDelegate.pri)