2020-01-07 20:08:18 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console c++11
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
CONFIG -= qt
|
|
|
|
|
2020-01-10 15:03:03 +00:00
|
|
|
LIBS += -lboost_system -lcrypto -lssl -lcpprest -lncurses -lmenu
|
2020-01-07 20:53:27 +00:00
|
|
|
|
2020-01-07 20:08:18 +00:00
|
|
|
SOURCES += \
|
2020-01-07 20:53:27 +00:00
|
|
|
main.cpp \
|
|
|
|
api_request.cpp \
|
2020-01-08 16:43:04 +00:00
|
|
|
apiresponse.cpp \
|
2020-01-08 19:47:35 +00:00
|
|
|
loginscreen.cpp \
|
2020-01-09 12:13:39 +00:00
|
|
|
ui_utils.cpp \
|
2020-01-09 12:43:07 +00:00
|
|
|
helpers/accounthelper.cpp \
|
|
|
|
helpers/userhelper.cpp \
|
2020-01-10 15:03:03 +00:00
|
|
|
entities/user.cpp \
|
2020-01-12 19:24:35 +00:00
|
|
|
mainmenu.cpp \
|
|
|
|
conversations_screen.cpp \
|
|
|
|
helpers/conversationshelper.cpp \
|
2020-01-12 20:15:51 +00:00
|
|
|
entities/conversation.cpp \
|
|
|
|
entities/conversationslist.cpp
|
2020-01-07 20:53:27 +00:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
config.h \
|
|
|
|
api_request.h \
|
2020-01-08 16:43:04 +00:00
|
|
|
apiresponse.h \
|
2020-01-08 19:47:35 +00:00
|
|
|
loginscreen.h \
|
2020-01-09 12:13:39 +00:00
|
|
|
ui_utils.h \
|
2020-01-09 12:43:07 +00:00
|
|
|
helpers/accounthelper.h \
|
|
|
|
helpers/userhelper.h \
|
2020-01-10 15:03:03 +00:00
|
|
|
entities/user.h \
|
2020-01-12 19:24:35 +00:00
|
|
|
mainmenu.h \
|
|
|
|
conversations_screen.h \
|
|
|
|
helpers/conversationshelper.h \
|
2020-01-12 20:15:51 +00:00
|
|
|
entities/conversation.h \
|
|
|
|
entities/conversationslist.h
|