mirror-chatterino2/chatterino.pro

161 lines
4 KiB
Prolog
Raw Normal View History

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-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
2017-04-12 17:46:44 +02:00
DEFINES += IRC_NAMESPACE=Communi
2016-12-29 17:31:07 +01:00
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += main.cpp\
2017-01-18 21:30:23 +01:00
channel.cpp \
colorscheme.cpp \
emojis.cpp \
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-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 \
messages/messageref.cpp \
logging/loggingmanager.cpp \
2017-04-12 17:46:44 +02:00
logging/loggingchannel.cpp \
windowmanager.cpp \
channelmanager.cpp \
fontmanager.cpp \
settingsmanager.cpp \
emotemanager.cpp \
usermanager.cpp \
twitch/twitchuser.cpp \
messages/messagebuilder.cpp \
twitch/twitchmessagebuilder.cpp \
ircuser2.cpp \
twitch/twitchparsemessage.cpp \
widgets/fancybutton.cpp \
widgets/titlebar.cpp \
widgets/userpopupwidget.cpp
2016-12-29 17:31:07 +01:00
2017-04-12 17:46:44 +02:00
HEADERS += \
2017-01-04 15:12:31 +01:00
asyncexec.h \
2017-01-18 21:30:23 +01:00
channel.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
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 \
2017-04-12 17:46:44 +02:00
twitch/emotevalue.h \
2017-01-18 21:30:23 +01:00
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-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
messages/limitedqueue.h \
messages/limitedqueuesnapshot.h \
messages/messageref.h \
logging/loggingmanager.h \
2017-04-12 17:46:44 +02:00
logging/loggingchannel.h \
channelmanager.h \
windowmanager.h \
settingsmanager.h \
fontmanager.h \
emotemanager.h \
util/urlfetch.h \
usermanager.h \
twitch/twitchuser.h \
messages/messageparseargs.h \
messages/messagebuilder.h \
twitch/twitchmessagebuilder.h \
ircuser2.h \
twitch/twitchparsemessage.h \
widgets/fancybutton.h \
widgets/titlebar.h \
widgets/userpopupwidget.h
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 {
2017-04-12 17:46:44 +02:00
INCLUDEPATH += C:\local\boost\
}
# Optional dependency on windows sdk 7.1
win32:exists(C:\Program Files\Microsoft SDKs\Windows\v7.1\Include\Windows.h) {
LIBS += -L"C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib" \
-ldwmapi \
-lgdi32
SOURCES += platform/borderless/qwinwidget.cpp \
platform/borderless/winnativewindow.cpp \
platform/borderless/widget.cpp
HEADERS += platform/borderless/qwinwidget.h \
platform/borderless/winnativewindow.h \
platform/borderless/widget.h
DEFINES += "USEWINSDK"
2017-01-22 22:56:10 +01:00
}
2017-01-31 22:41:12 +01:00
macx {
INCLUDEPATH += /usr/local/include
}
2017-04-12 17:46:44 +02:00
FORMS += \
forms/userpopup.ui