mirror-chatterino2/chatterino.pro

120 lines
2.7 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-13 18:59:11 +01:00
win32:LIBS += -LC:/OpenSSL-Win32/lib/openssl.lib
INCLUDEPATH += C:/OpenSSL-Win32/include
CONFIG += c++11
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-13 18:59:11 +01:00
mainwindow.cpp \
2016-12-29 17:31:07 +01:00
chatwidget.cpp \
notebook.cpp \
notebooktab.cpp \
2016-12-30 12:20:26 +01:00
notebookpage.cpp \
2016-12-30 19:20:04 +01:00
notebookbutton.cpp \
2017-01-01 02:30:42 +01:00
colorscheme.cpp \
chatwidgetheader.cpp \
chatwidgetinput.cpp \
chatwidgetview.cpp \
notebookpagedroppreview.cpp \
2017-01-01 18:43:52 +01:00
channel.cpp \
dialog.cpp \
settingsdialog.cpp \
2017-01-03 21:19:33 +01:00
settingsdialogtab.cpp \
scrollbar.cpp \
scrollbarhighlight.cpp \
ircmanager.cpp \
2017-01-04 15:12:31 +01:00
lambdaqrunnable.cpp \
account.cpp \
emotes.cpp \
lazyloadedimage.cpp \
2017-01-05 16:07:20 +01:00
concurrentmap.cpp \
message.cpp \
word.cpp \
link.cpp \
2017-01-05 20:49:33 +01:00
fonts.cpp \
2017-01-06 23:28:48 +01:00
appsettings.cpp \
2017-01-11 01:08:20 +01:00
emojis.cpp \
2017-01-13 18:59:11 +01:00
wordpart.cpp \
2017-01-15 16:38:30 +01:00
resources.cpp \
windows.cpp \
chatwidgetheaderbutton.cpp \
chatwidgetheaderbuttonlabel.cpp \
channels.cpp
2016-12-29 17:31:07 +01:00
HEADERS += mainwindow.h \
chatwidget.h \
notebook.h \
notebooktab.h \
2016-12-30 12:20:26 +01:00
notebookpage.h \
2016-12-30 19:20:04 +01:00
notebookbutton.h \
2017-01-01 02:30:42 +01:00
colorscheme.h \
chatwidgetheader.h \
chatwidgetinput.h \
chatwidgetview.h \
notebookpagedroppreview.h \
2017-01-01 18:43:52 +01:00
channel.h \
dialog.h \
settingsdialog.h \
2017-01-03 21:19:33 +01:00
settingsdialogtab.h \
scrollbar.h \
scrollbarhighlight.h \
ircmanager.h \
2017-01-04 15:12:31 +01:00
lambdaqrunnable.h \
asyncexec.h \
account.h \
emotes.h \
lazyloadedimage.h \
twitchemotevalue.h \
2017-01-05 16:07:20 +01:00
concurrentmap.h \
message.h \
word.h \
link.h \
fonts.h \
2017-01-06 23:28:48 +01:00
appsettings.h \
2017-01-11 01:08:20 +01:00
emojis.h \
wordpart.h \
2017-01-13 18:59:11 +01:00
common.h \
2017-01-15 16:38:30 +01:00
resources.h \
windows.h \
chatwidgetheaderbutton.h \
chatwidgetheaderbuttonlabel.h \
channels.h
2017-01-11 01:08:20 +01:00
PRECOMPILED_HEADER =
2016-12-29 17:31:07 +01:00
2017-01-01 18:43:52 +01:00
FORMS += \
dialog.ui
2017-01-01 02:30:42 +01:00
RESOURCES += \
resources.qrc
2017-01-01 18:43:52 +01:00
DISTFILES +=