1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-07-06 07:29:16 +00:00
comunicterm/ComunicTerm.pro

37 lines
827 B
Prolog
Raw Normal View History

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 \
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 \
entities/conversation.h \
entities/conversationslist.h