2016-12-29 17:31:07 +01:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2016-12-28T18:23:35
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2017-01-31 22:41:12 +01:00
|
|
|
QT += core gui network
|
|
|
|
CONFIG += communi
|
2017-01-03 21:19:33 +01:00
|
|
|
COMMUNI += core model util
|
2017-01-31 22:41:12 +01:00
|
|
|
CONFIG += c++14
|
2017-01-15 17:21:41 +01:00
|
|
|
|
2017-01-03 21:19:33 +01:00
|
|
|
include(lib/libcommuni/src/src.pri)
|
2016-12-29 17:31:07 +01:00
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
2017-01-31 22:41:12 +01:00
|
|
|
TARGET = chatterino
|
2016-12-29 17:31:07 +01:00
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
2017-01-04 15:12:31 +01:00
|
|
|
account.cpp \
|
2017-01-18 21:30:23 +01:00
|
|
|
channel.cpp \
|
|
|
|
channels.cpp \
|
|
|
|
colorscheme.cpp \
|
|
|
|
emojis.cpp \
|
2017-01-04 15:12:31 +01:00
|
|
|
emotes.cpp \
|
2017-01-05 20:49:33 +01:00
|
|
|
fonts.cpp \
|
2017-01-18 21:30:23 +01:00
|
|
|
ircmanager.cpp \
|
|
|
|
messages/lazyloadedimage.cpp \
|
|
|
|
messages/link.cpp \
|
|
|
|
messages/message.cpp \
|
|
|
|
messages/word.cpp \
|
|
|
|
messages/wordpart.cpp \
|
2017-01-15 16:38:30 +01:00
|
|
|
resources.cpp \
|
2017-01-23 16:38:06 +01:00
|
|
|
settings.cpp \
|
2017-01-18 21:30:23 +01:00
|
|
|
widgets/chatwidget.cpp \
|
|
|
|
widgets/chatwidgetheader.cpp \
|
|
|
|
widgets/chatwidgetheaderbutton.cpp \
|
|
|
|
widgets/chatwidgetinput.cpp \
|
|
|
|
widgets/chatwidgetview.cpp \
|
|
|
|
widgets/mainwindow.cpp \
|
|
|
|
widgets/notebook.cpp \
|
|
|
|
widgets/notebookbutton.cpp \
|
|
|
|
widgets/notebookpage.cpp \
|
|
|
|
widgets/notebookpagedroppreview.cpp \
|
|
|
|
widgets/notebooktab.cpp \
|
|
|
|
widgets/scrollbar.cpp \
|
|
|
|
widgets/scrollbarhighlight.cpp \
|
|
|
|
widgets/settingsdialog.cpp \
|
|
|
|
widgets/settingsdialogtab.cpp \
|
|
|
|
widgets/textinputdialog.cpp \
|
2017-01-29 13:23:22 +01:00
|
|
|
windows.cpp \
|
2017-02-02 22:15:09 +01:00
|
|
|
logging.cpp \
|
|
|
|
messages/messageref.cpp
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
HEADERS += account.h \
|
2017-01-04 15:12:31 +01:00
|
|
|
asyncexec.h \
|
2017-01-18 21:30:23 +01:00
|
|
|
channel.h \
|
|
|
|
channels.h \
|
|
|
|
colorscheme.h \
|
|
|
|
common.h \
|
2017-01-05 16:07:20 +01:00
|
|
|
concurrentmap.h \
|
2017-01-11 01:08:20 +01:00
|
|
|
emojis.h \
|
2017-01-18 21:30:23 +01:00
|
|
|
emotes.h \
|
|
|
|
fonts.h \
|
|
|
|
ircmanager.h \
|
|
|
|
messages/lazyloadedimage.h \
|
|
|
|
messages/link.h \
|
|
|
|
messages/message.h \
|
|
|
|
messages/word.h \
|
|
|
|
messages/wordpart.h \
|
2017-01-15 16:38:30 +01:00
|
|
|
resources.h \
|
2017-01-23 16:38:06 +01:00
|
|
|
setting.h \
|
|
|
|
settings.h \
|
2017-01-18 21:30:23 +01:00
|
|
|
twitchemotevalue.h \
|
|
|
|
widgets/chatwidget.h \
|
|
|
|
widgets/chatwidgetheader.h \
|
|
|
|
widgets/chatwidgetheaderbutton.h \
|
|
|
|
widgets/chatwidgetinput.h \
|
|
|
|
widgets/chatwidgetview.h \
|
|
|
|
widgets/mainwindow.h \
|
|
|
|
widgets/notebook.h \
|
|
|
|
widgets/notebookbutton.h \
|
|
|
|
widgets/notebookpage.h \
|
|
|
|
widgets/notebookpagedroppreview.h \
|
|
|
|
widgets/notebooktab.h \
|
|
|
|
widgets/scrollbar.h \
|
|
|
|
widgets/scrollbarhighlight.h \
|
|
|
|
widgets/settingsdialog.h \
|
|
|
|
widgets/settingsdialogtab.h \
|
|
|
|
widgets/signallabel.h \
|
|
|
|
widgets/textinputdialog.h \
|
2017-01-20 06:10:28 +01:00
|
|
|
windows.h \
|
2017-01-24 19:51:57 +01:00
|
|
|
widgets/resizingtextedit.h \
|
2017-01-29 13:23:22 +01:00
|
|
|
settingssnapshot.h \
|
2017-02-02 20:35:12 +01:00
|
|
|
logging.h \
|
|
|
|
messages/limitedqueue.h \
|
2017-02-02 22:15:09 +01:00
|
|
|
messages/limitedqueuesnapshot.h \
|
|
|
|
messages/messageref.h
|
2017-01-05 16:42:26 +01:00
|
|
|
|
2017-01-11 01:08:20 +01:00
|
|
|
PRECOMPILED_HEADER =
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-01 02:30:42 +01:00
|
|
|
RESOURCES += \
|
|
|
|
resources.qrc
|
2017-01-01 18:43:52 +01:00
|
|
|
|
|
|
|
DISTFILES +=
|
2017-01-22 22:56:10 +01:00
|
|
|
|
|
|
|
# Include boost
|
|
|
|
win32 {
|
|
|
|
INCLUDEPATH += C:\local\boost\
|
|
|
|
}
|
2017-01-31 22:41:12 +01:00
|
|
|
|
|
|
|
macx {
|
|
|
|
INCLUDEPATH += /usr/local/include
|
|
|
|
}
|