mirror-chatterino2/chatterino.pro

126 lines
3.1 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-03 21:19:33 +01:00
QT += core gui network
2017-01-05 16:07:20 +01:00
CONFIG += communi
2017-01-03 21:19:33 +01:00
COMMUNI += core model util
2017-01-18 01:04:54 +01:00
#win32 {
# LIBS += -L"C:/OpenSSL-Win32/lib" -llibssl.lib
# INCLUDEPATH += C:/OpenSSL-Win32/include
#} else {
# LIBS += -lcrypto -lssl
#}
2017-01-13 18:59:11 +01:00
2017-01-22 22:55:33 +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
TARGET = chatterino
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#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 \
windows.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 \
settingssnapshot.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 {
INCLUDEPATH += C:\local\boost\
}