fixed chatterino.pro paths

This commit is contained in:
fourtf 2018-06-26 13:31:40 +02:00
parent c9722b9780
commit 14f07274d9

View file

@ -14,7 +14,7 @@ INCLUDEPATH += src/
TARGET = chatterino TARGET = chatterino
TEMPLATE = app TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS DEFINES += QT_DEPRECATED_WARNINGS
PRECOMPILED_HEADER = src/precompiled_header.hpp PRECOMPILED_HEADER = src/PrecompiledHeader.hpp
CONFIG += precompile_header CONFIG += precompile_header
# https://bugreports.qt.io/browse/QTBUG-27018 # https://bugreports.qt.io/browse/QTBUG-27018
@ -93,298 +93,309 @@ werr {
# src # src
SOURCES += \ SOURCES += \
src/main.cpp \ src/Application.cpp
src/application.cpp \ src/Channel.cpp
src/channel.cpp \ src/ChannelData.cpp
src/channeldata.cpp \ src/Common.h.cpp
src/messages/image.cpp \ src/controllers/accounts/Account.cpp
src/messages/layouts/messagelayout.cpp \ src/controllers/accounts/AccountController.cpp
src/messages/layouts/messagelayoutcontainer.cpp \ src/controllers/accounts/AccountModel.cpp
src/messages/layouts/messagelayoutelement.cpp \ src/controllers/commands/Command.cpp
src/messages/link.cpp \ src/controllers/commands/CommandController.cpp
src/messages/message.cpp \ src/controllers/commands/CommandModel.cpp
src/messages/messagebuilder.cpp \ src/controllers/highlights/HighlightController.cpp
src/messages/messagecolor.cpp \ src/controllers/highlights/HighlightModel.cpp
src/messages/messageelement.cpp \ src/controllers/ignores/IgnoreController.cpp
src/providers/irc/abstractircserver.cpp \ src/controllers/ignores/IgnoreModel.cpp
src/providers/twitch/ircmessagehandler.cpp \ src/controllers/taggedusers/TaggedUser.cpp
src/providers/twitch/twitchaccount.cpp \ src/controllers/taggedusers/TaggedUsersController.cpp
src/providers/twitch/twitchaccountmanager.cpp \ src/controllers/taggedusers/TaggedUsersModel.cpp
src/providers/twitch/twitchchannel.cpp \ src/main.cpp
src/providers/twitch/twitchmessagebuilder.cpp \ src/messages/Image.cpp
src/providers/twitch/twitchserver.cpp \ src/messages/layouts/MessageLayout.cpp
src/providers/twitch/pubsub.cpp \ src/messages/layouts/MessageLayoutContainer.cpp
src/providers/twitch/twitchemotes.cpp \ src/messages/layouts/MessageLayoutElement.cpp
src/providers/bttv/bttvemotes.cpp \ src/messages/Link.cpp
src/providers/ffz/ffzemotes.cpp \ src/messages/Message.cpp
src/providers/emoji/emojis.cpp \ src/messages/MessageBuilder.cpp
src/singletons/emotemanager.cpp \ src/messages/MessageColor.cpp
src/singletons/fontmanager.cpp \ src/messages/MessageElement.cpp
src/util/completionmodel.cpp \ src/providers/bttv/BttvEmotes.cpp
src/singletons/helper/loggingchannel.cpp \ src/providers/emoji/Emojis.cpp
src/singletons/helper/moderationaction.cpp \ src/providers/ffz/FfzEmotes.cpp
src/singletons/helper/chatterinosetting.cpp \ src/providers/irc/AbstractIrcServer.cpp
src/singletons/helper/giftimer.cpp \ src/providers/irc/IrcAccount.cpp
src/singletons/loggingmanager.cpp \ src/providers/irc/IrcChannel2.cpp
src/singletons/pathmanager.cpp \ src/providers/irc/IrcConnection2.cpp
src/singletons/resourcemanager.cpp \ src/providers/irc/IrcServer.cpp
src/singletons/settingsmanager.cpp \ src/providers/twitch/IrcMessageHandler.cpp
src/singletons/thememanager.cpp \ src/providers/twitch/Pubsub.cpp
src/singletons/windowmanager.cpp \ src/providers/twitch/PubsubActions.cpp
src/util/networkmanager.cpp \ src/providers/twitch/PubsubHelpers.cpp
src/util/networkrequest.cpp \ src/providers/twitch/TwitchAccount.cpp
src/widgets/accountswitchpopupwidget.cpp \ src/providers/twitch/TwitchAccountManager.cpp
src/widgets/accountswitchwidget.cpp \ src/providers/twitch/TwitchChannel.cpp
src/widgets/basewidget.cpp \ src/providers/twitch/TwitchEmotes.cpp
src/widgets/basewindow.cpp \ src/providers/twitch/TwitchHelpers.cpp
src/widgets/emotepopup.cpp \ src/providers/twitch/TwitchMessageBuilder.cpp
src/widgets/helper/channelview.cpp \ src/providers/twitch/TwitchServer.cpp
src/widgets/helper/droppreview.cpp \ src/providers/twitch/TwitchUser.cpp
src/widgets/helper/notebookbutton.cpp \ src/singletons/EmoteManager.cpp
src/widgets/helper/notebooktab.cpp \ src/singletons/FontManager.cpp
src/widgets/helper/resizingtextedit.cpp \ src/singletons/helper/ChatterinoSetting.cpp
src/widgets/helper/rippleeffectbutton.cpp \ src/singletons/helper/GifTimer.cpp
src/widgets/helper/rippleeffectlabel.cpp \ src/singletons/helper/LoggingChannel.cpp
src/widgets/helper/scrollbarhighlight.cpp \ src/singletons/helper/ModerationAction.cpp
src/widgets/helper/searchpopup.cpp \ src/singletons/IrcManager.cpp
src/widgets/helper/settingsdialogtab.cpp \ src/singletons/LoggingManager.cpp
src/widgets/helper/splitcolumn.cpp \ src/singletons/NativeMessagingManager.cpp
src/widgets/helper/splitheader.cpp \ src/singletons/PathManager.cpp
src/widgets/helper/splitinput.cpp \ src/singletons/ResourceManager.cpp
src/widgets/helper/titlebarbutton.cpp \ src/singletons/SettingsManager.cpp
src/widgets/logindialog.cpp \ src/singletons/ThemeManager.cpp
src/widgets/notebook.cpp \ src/singletons/UpdateManager.cpp
src/widgets/qualitypopup.cpp \ src/singletons/WindowManager.cpp
src/widgets/scrollbar.cpp \ src/util/CompletionModel.cpp
src/widgets/settingsdialog.cpp \ src/util/DebugCount.cpp
src/widgets/settingspages/aboutpage.cpp \ src/util/Emotemap.cpp
src/widgets/settingspages/accountspage.cpp \ src/util/NetworkManager.cpp
src/widgets/settingspages/appearancepage.cpp \ src/util/NetworkRequest.cpp
src/widgets/settingspages/behaviourpage.cpp \ src/util/RapidjsonHelpers.cpp
src/widgets/settingspages/commandpage.cpp \ src/util/StreamLink.cpp
src/widgets/settingspages/emotespage.cpp \ src/util/WindowsHelper.cpp
src/widgets/settingspages/highlightingpage.cpp \ src/widgets/AccountSwitchPopupWidget.cpp
src/widgets/settingspages/ignoreuserspage.cpp \ src/widgets/AccountSwitchWidget.cpp
src/widgets/settingspages/keyboardsettingspage.cpp \ src/widgets/AttachedWindow.cpp
src/widgets/settingspages/logspage.cpp \ src/widgets/BaseWidget.cpp
src/widgets/settingspages/moderationpage.cpp \ src/widgets/BaseWindow.cpp
src/widgets/settingspages/settingspage.cpp \ src/widgets/EmotePopup.cpp
src/widgets/settingspages/specialchannelspage.cpp \ src/widgets/helper/ChannelView.cpp
src/widgets/split.cpp \ src/widgets/helper/ComboBoxItemDelegate.cpp
src/widgets/splitcontainer.cpp \ src/widgets/helper/DebugPopup.cpp
src/widgets/streamview.cpp \ src/widgets/helper/DropOverlay.cpp
src/widgets/textinputdialog.cpp \ src/widgets/helper/DropPreview.cpp
src/widgets/tooltipwidget.cpp \ src/widgets/helper/EditableModelView.cpp
src/widgets/window.cpp \ src/widgets/helper/NotebookButton.cpp
src/providers/irc/ircaccount.cpp \ src/widgets/helper/NotebookTab.cpp
src/providers/irc/ircserver.cpp \ src/widgets/helper/ResizingTextEdit.cpp
src/providers/irc/ircchannel2.cpp \ src/widgets/helper/RippleEffectButton.cpp
src/util/streamlink.cpp \ src/widgets/helper/RippleEffectLabel.cpp
src/providers/twitch/twitchhelpers.cpp \ src/widgets/helper/ScrollbarHighlight.cpp
src/widgets/helper/signallabel.cpp \ src/widgets/helper/SearchPopup.cpp
src/widgets/helper/debugpopup.cpp \ src/widgets/helper/SettingsDialogTab.cpp
src/util/debugcount.cpp \ src/widgets/helper/SignalLabel.cpp
src/singletons/nativemessagingmanager.cpp \ src/widgets/helper/SplitColumn.cpp
src/util/rapidjson-helpers.cpp \ src/widgets/helper/SplitHeader.cpp
src/providers/twitch/pubsubhelpers.cpp \ src/widgets/helper/SplitInput.cpp
src/providers/twitch/pubsubactions.cpp \ src/widgets/helper/SplitNode.cpp
src/providers/twitch/twitchuser.cpp \ src/widgets/helper/SplitOverlay.cpp
src/widgets/selectchanneldialog.cpp \ src/widgets/helper/TitlebarButton.cpp
src/singletons/updatemanager.cpp \ src/widgets/Label.cpp
src/widgets/lastruncrashdialog.cpp \ src/widgets/LastRunCrashDialog.cpp
src/widgets/attachedwindow.cpp \ src/widgets/LoginDialog.cpp
src/widgets/settingspages/externaltoolspage.cpp \ src/widgets/Notebook.cpp
src/widgets/helper/comboboxitemdelegate.cpp \ src/widgets/NotificationPopup.cpp
src/controllers/commands/command.cpp \ src/widgets/QualityPopup.cpp
src/controllers/commands/commandmodel.cpp \ src/widgets/Scrollbar.cpp
src/controllers/commands/commandcontroller.cpp \ src/widgets/SelectChannelDialog.cpp
src/controllers/highlights/highlightcontroller.cpp \ src/widgets/SettingsDialog.cpp
src/controllers/highlights/highlightmodel.cpp \ src/widgets/settingspages/AboutPage.cpp
src/controllers/ignores/ignorecontroller.cpp \ src/widgets/settingspages/AccountsPage.cpp
src/controllers/ignores/ignoremodel.cpp \ src/widgets/settingspages/AppearancePage.cpp
src/widgets/helper/editablemodelview.cpp \ src/widgets/settingspages/BehaviourPage.cpp
src/controllers/accounts/accountcontroller.cpp \ src/widgets/settingspages/BrowserextensionPage.cpp
src/controllers/accounts/accountmodel.cpp \ src/widgets/settingspages/CommandPage.cpp
src/controllers/accounts/account.cpp \ src/widgets/settingspages/EmotesPage.cpp
src/widgets/helper/splitoverlay.cpp \ src/widgets/settingspages/ExternaltoolsPage.cpp
src/widgets/helper/dropoverlay.cpp \ src/widgets/settingspages/HighlightingPage.cpp
src/widgets/helper/splitnode.cpp \ src/widgets/settingspages/IgnoreusersPage.cpp
src/widgets/notificationpopup.cpp \ src/widgets/settingspages/KeyboardsettingsPage.cpp
src/controllers/taggedusers/taggeduserscontroller.cpp \ src/widgets/settingspages/LogsPage.cpp
src/controllers/taggedusers/taggeduser.cpp \ src/widgets/settingspages/ModerationPage.cpp
src/controllers/taggedusers/taggedusersmodel.cpp \ src/widgets/settingspages/SettingsPage.cpp
src/util/emotemap.cpp \ src/widgets/settingspages/SpecialChannelsPage.cpp
src/providers/irc/ircconnection2.cpp \ src/widgets/Split.cpp
src/widgets/userinfopopup.cpp \ src/widgets/SplitContainer.cpp
src/widgets/welcomedialog.cpp \ src/widgets/StreamView.cpp
src/widgets/label.cpp \ src/widgets/TextInputDialog.cpp
src/widgets/settingspages/browserextensionpage.cpp \ src/widgets/TooltipWidget.cpp
src/util/windows_helper.cpp src/widgets/UserInfoPopup.cpp
src/widgets/WelcomeDialog.cpp
src/widgets/Window.cpp
HEADERS += \ HEADERS += \
src/precompiled_header.hpp \ src/Application.hpp
src/channel.hpp \ src/Channel.hpp
src/const.hpp \ src/ChannelData.hpp
src/debug/log.hpp \ src/Common.hpp
src/messages/image.hpp \ src/Const.hpp
src/messages/layouts/messagelayout.hpp \ src/controllers/accounts/Account.hpp
src/messages/layouts/messagelayoutcontainer.hpp \ src/controllers/accounts/AccountController.hpp
src/messages/layouts/messagelayoutelement.hpp \ src/controllers/accounts/AccountModel.hpp
src/messages/limitedqueue.hpp \ src/controllers/commands/Command.hpp
src/messages/limitedqueuesnapshot.hpp \ src/controllers/commands/CommandController.hpp
src/messages/link.hpp \ src/controllers/commands/CommandModel.hpp
src/messages/message.hpp \ src/controllers/highlights/HighlightController.hpp
src/messages/messagebuilder.hpp \ src/controllers/highlights/HighlightModel.hpp
src/messages/messagecolor.hpp \ src/controllers/highlights/HighlightPhrase.hpp
src/messages/messageelement.hpp \ src/controllers/ignores/IgnoreController.hpp
src/messages/messageparseargs.hpp \ src/controllers/ignores/IgnoreModel.hpp
src/messages/selection.hpp \ src/controllers/ignores/IgnorePhrase.hpp
src/providers/twitch/emotevalue.hpp \ src/controllers/taggedusers/TaggedUser.hpp
src/providers/twitch/ircmessagehandler.hpp \ src/controllers/taggedusers/TaggedUsersController.hpp
src/providers/twitch/twitchaccount.hpp \ src/controllers/taggedusers/TaggedUsersModel.hpp
src/providers/twitch/twitchaccountmanager.hpp \ src/Credentials.hpp
src/providers/twitch/twitchchannel.hpp \ src/debug/Log.hpp
src/providers/twitch/twitchmessagebuilder.hpp \ src/LockedObject.hpp
src/providers/twitch/twitchserver.hpp \ src/messages/HighlightPhrase.hpp
src/providers/twitch/pubsub.hpp \ src/messages/Image.hpp
src/providers/twitch/twitchemotes.hpp \ src/messages/layouts/MessageLayout.hpp
src/providers/bttv/bttvemotes.hpp \ src/messages/layouts/MessageLayoutContainer.hpp
src/providers/ffz/ffzemotes.hpp \ src/messages/layouts/MessageLayoutElement.hpp
src/providers/emoji/emojis.hpp \ src/messages/LimitedQueue.hpp
src/singletons/emotemanager.hpp \ src/messages/LimitedQueueSnapshot.hpp
src/singletons/fontmanager.hpp \ src/messages/Link.hpp
src/singletons/helper/chatterinosetting.hpp \ src/messages/Message.hpp
src/singletons/helper/giftimer.hpp \ src/messages/MessageBuilder.hpp
src/util/completionmodel.hpp \ src/messages/MessageColor.hpp
src/singletons/helper/loggingchannel.hpp \ src/messages/MessageElement.hpp
src/singletons/helper/moderationaction.hpp \ src/messages/MessageParseArgs.hpp
src/singletons/loggingmanager.hpp \ src/messages/Selection.hpp
src/singletons/pathmanager.hpp \ src/NullablePtr.hpp
src/singletons/resourcemanager.hpp \ src/PrecompiledHeader.hpp
src/singletons/thememanager.hpp \ src/ProviderId.hpp
src/singletons/windowmanager.hpp \ src/providers/bttv/BttvEmotes.hpp
src/util/benchmark.hpp \ src/providers/emoji/Emojis.hpp
src/util/concurrentmap.hpp \ src/providers/ffz/FfzEmotes.hpp
src/util/distancebetweenpoints.hpp \ src/providers/irc/AbstractIrcServer.hpp
src/util/emotemap.hpp \ src/providers/irc/IrcAccount.hpp
src/util/flagsenum.hpp \ src/providers/irc/IrcChannel2.hpp
src/util/helpers.hpp \ src/providers/irc/IrcConnection2.hpp
src/util/irchelpers.hpp \ src/providers/irc/IrcServer.hpp
src/util/layoutcreator.hpp \ src/providers/twitch/EmoteValue.hpp
src/util/nativeeventhelper.hpp \ src/providers/twitch/IrcMessageHandler.hpp
src/util/networkmanager.hpp \ src/providers/twitch/Pubsub.hpp
src/util/networkrequest.hpp \ src/providers/twitch/PubsubActions.hpp
src/util/networkrequester.hpp \ src/providers/twitch/PubsubHelpers.hpp
src/util/networkworker.hpp \ src/providers/twitch/TwitchAccount.hpp
src/util/posttothread.hpp \ src/providers/twitch/TwitchAccountManager.hpp
src/util/property.hpp \ src/providers/twitch/TwitchChannel.hpp
src/util/serialize-custom.hpp \ src/providers/twitch/TwitchEmotes.hpp
src/util/urlfetch.hpp \ src/providers/twitch/TwitchHelpers.hpp
src/widgets/accountswitchpopupwidget.hpp \ src/providers/twitch/TwitchMessageBuilder.hpp
src/widgets/accountswitchwidget.hpp \ src/providers/twitch/TwitchServer.hpp
src/widgets/basewidget.hpp \ src/providers/twitch/TwitchUser.hpp
src/widgets/basewindow.hpp \ src/SignalVector.hpp
src/widgets/emotepopup.hpp \ src/singletons/EmoteManager.hpp
src/widgets/helper/channelview.hpp \ src/singletons/FontManager.hpp
src/widgets/helper/droppreview.hpp \ src/singletons/helper/ChatterinoSetting.hpp
src/widgets/helper/notebookbutton.hpp \ src/singletons/helper/GifTimer.hpp
src/widgets/helper/notebooktab.hpp \ src/singletons/helper/LoggingChannel.hpp
src/widgets/helper/resizingtextedit.hpp \ src/singletons/helper/ModerationAction.hpp
src/widgets/helper/rippleeffectbutton.hpp \ src/singletons/IrcManager.hpp
src/widgets/helper/rippleeffectlabel.hpp \ src/singletons/LoggingManager.hpp
src/widgets/helper/scrollbarhighlight.hpp \ src/singletons/NativeMessagingManager.hpp
src/widgets/helper/searchpopup.hpp \ src/singletons/PathManager.hpp
src/widgets/helper/settingsdialogtab.hpp \ src/singletons/ResourceManager.hpp
src/widgets/helper/shortcut.hpp \ src/singletons/SettingsManager.hpp
src/widgets/helper/signallabel.hpp \ src/singletons/ThemeManager.hpp
src/widgets/helper/splitcolumn.hpp \ src/singletons/UpdateManager.hpp
src/widgets/helper/splitheader.hpp \ src/singletons/WindowManager.hpp
src/widgets/helper/splitinput.hpp \ src/util/AssertInGuiThread.hpp
src/widgets/helper/titlebarbutton.hpp \ src/util/Benchmark.hpp
src/widgets/notebook.hpp \ src/util/Clamp.hpp
src/widgets/qualitypopup.hpp \ src/util/CombinePath.hpp
src/widgets/scrollbar.hpp \ src/util/CompletionModel.hpp
src/widgets/settingsdialog.hpp \ src/util/ConcurrentMap.hpp
src/widgets/settingspages/aboutpage.hpp \ src/util/DebugCount.hpp
src/widgets/settingspages/accountspage.hpp \ src/util/DistanceBetweenPoints.hpp
src/widgets/settingspages/appearancepage.hpp \ src/util/Emotemap.hpp
src/widgets/settingspages/behaviourpage.hpp \ src/util/FlagsEnum.hpp
src/widgets/settingspages/commandpage.hpp \ src/util/Helpers.hpp
src/widgets/settingspages/emotespage.hpp \ src/util/IrcHelpers.hpp
src/widgets/settingspages/highlightingpage.hpp \ src/util/LayoutCreator.hpp
src/widgets/settingspages/ignoreuserspage.hpp \ src/util/MutexValue.hpp
src/widgets/settingspages/keyboardsettingspage.hpp \ src/util/NativeEventHelper.hpp
src/widgets/settingspages/logspage.hpp \ src/util/NetworkManager.hpp
src/widgets/settingspages/moderationpage.hpp \ src/util/NetworkRequest.hpp
src/widgets/settingspages/settingspage.hpp \ src/util/NetworkRequester.hpp
src/widgets/settingspages/specialchannelspage.hpp \ src/util/NetworkWorker.hpp
src/widgets/split.hpp \ src/util/PostToThread.hpp
src/widgets/splitcontainer.hpp \ src/util/Property.hpp
src/widgets/streamview.hpp \ src/util/QstringHash.hpp
src/widgets/textinputdialog.hpp \ src/util/RapidjsonHelpers.hpp
src/widgets/tooltipwidget.hpp \ src/util/RemoveScrollAreaBackground.hpp
src/widgets/window.hpp \ src/util/SerializeCustom.hpp
src/common.hpp \ src/util/SharedPtrElementLess.hpp
src/providers/irc/abstractircserver.hpp \ src/util/SignalVector2.hpp
src/providers/irc/ircaccount.hpp \ src/util/SignalVectorModel.hpp
src/providers/irc/ircserver.hpp \ src/util/StandardItemHelper.hpp
src/providers/irc/ircchannel2.hpp \ src/util/StreamLink.hpp
src/util/streamlink.hpp \ src/util/UrlFetch.hpp
src/providers/twitch/twitchhelpers.hpp \ src/util/WindowsHelper.hpp
src/util/debugcount.hpp \ src/Version.hpp
src/widgets/helper/debugpopup.hpp \ src/widgets/AccountSwitchPopupWidget.hpp
src/version.hpp \ src/widgets/AccountSwitchWidget.hpp
src/singletons/settingsmanager.hpp \ src/widgets/AttachedWindow.hpp
src/singletons/nativemessagingmanager.hpp \ src/widgets/BaseWidget.hpp
src/util/rapidjson-helpers.hpp \ src/widgets/BaseWindow.hpp
src/providers/twitch/pubsubhelpers.hpp \ src/widgets/EmotePopup.hpp
src/providers/twitch/pubsubactions.hpp \ src/widgets/helper/ChannelView.hpp
src/providers/twitch/twitchuser.hpp \ src/widgets/helper/ComboBoxItemDelegate.hpp
src/widgets/selectchanneldialog.hpp \ src/widgets/helper/DebugPopup.hpp
src/singletons/updatemanager.hpp \ src/widgets/helper/DropOverlay.hpp
src/widgets/lastruncrashdialog.hpp \ src/widgets/helper/DropPreview.hpp
src/widgets/attachedwindow.hpp \ src/widgets/helper/EditableModelView.hpp
src/widgets/settingspages/externaltoolspage.hpp \ src/widgets/helper/Line.hpp
src/util/removescrollareabackground.hpp \ src/widgets/helper/NotebookButton.hpp
src/util/standarditemhelper.hpp \ src/widgets/helper/NotebookTab.hpp
src/widgets/helper/comboboxitemdelegate.hpp \ src/widgets/helper/ResizingTextEdit.hpp
src/util/assertinguithread.hpp \ src/widgets/helper/RippleEffectButton.hpp
src/util/signalvector2.hpp \ src/widgets/helper/RippleEffectLabel.hpp
src/util/signalvectormodel.hpp \ src/widgets/helper/ScrollbarHighlight.hpp
src/controllers/commands/command.hpp \ src/widgets/helper/SearchPopup.hpp
src/controllers/commands/commandmodel.hpp \ src/widgets/helper/SettingsDialogTab.hpp
src/controllers/commands/commandcontroller.hpp \ src/widgets/helper/Shortcut.hpp
src/controllers/highlights/highlightcontroller.hpp \ src/widgets/helper/SignalLabel.hpp
src/controllers/highlights/highlightphrase.hpp \ src/widgets/helper/SplitColumn.hpp
src/controllers/highlights/highlightmodel.hpp \ src/widgets/helper/SplitHeader.hpp
src/controllers/ignores/ignorecontroller.hpp \ src/widgets/helper/SplitInput.hpp
src/controllers/ignores/ignorephrase.hpp \ src/widgets/helper/SplitNode.hpp
src/controllers/ignores/ignoremodel.hpp \ src/widgets/helper/SplitOverlay.hpp
src/widgets/helper/editablemodelview.hpp \ src/widgets/helper/TitlebarButton.hpp
src/controllers/accounts/accountcontroller.hpp \ src/widgets/Label.hpp
src/controllers/accounts/accountmodel.hpp \ src/widgets/LastRunCrashDialog.hpp
src/controllers/accounts/account.hpp \ src/widgets/LoginDialog.hpp
src/util/sharedptrelementless.hpp \ src/widgets/Notebook.hpp
src/widgets/helper/splitoverlay.hpp \ src/widgets/NotificationPopup.hpp
src/widgets/helper/dropoverlay.hpp \ src/widgets/QualityPopup.hpp
src/widgets/helper/splitnode.hpp \ src/widgets/Scrollbar.hpp
src/widgets/notificationpopup.hpp \ src/widgets/SelectChannelDialog.hpp
src/controllers/taggedusers/taggeduserscontroller.hpp \ src/widgets/SettingsDialog.hpp
src/controllers/taggedusers/taggeduser.hpp \ src/widgets/settingspages/AboutPage.hpp
src/providerid.hpp \ src/widgets/settingspages/AccountsPage.hpp
src/controllers/taggedusers/taggedusersmodel.hpp \ src/widgets/settingspages/AppearancePage.hpp
src/util/qstringhash.hpp \ src/widgets/settingspages/BehaviourPage.hpp
src/util/mutexvalue.hpp \ src/widgets/settingspages/BrowserextensionPage.hpp
src/providers/irc/ircconnection2.hpp \ src/widgets/settingspages/CommandPage.hpp
src/widgets/helper/line.hpp \ src/widgets/settingspages/EmotesPage.hpp
src/widgets/userinfopopup.hpp \ src/widgets/settingspages/ExternaltoolsPage.hpp
src/widgets/welcomedialog.hpp \ src/widgets/settingspages/HighlightingPage.hpp
src/util/clamp.hpp \ src/widgets/settingspages/IgnoreusersPage.hpp
src/widgets/label.hpp \ src/widgets/settingspages/KeyboardsettingsPage.hpp
src/util/combine_path.hpp \ src/widgets/settingspages/LogsPage.hpp
src/widgets/settingspages/browserextensionpage.hpp \ src/widgets/settingspages/ModerationPage.hpp
src/nullableptr.hpp \ src/widgets/settingspages/SettingsPage.hpp
src/util/windows_helper.hpp src/widgets/settingspages/SpecialChannelsPage.hpp
src/widgets/Split.hpp
src/widgets/SplitContainer.hpp
src/widgets/StreamView.hpp
src/widgets/TextInputDialog.hpp
src/widgets/Titlebar.hpp
src/widgets/TooltipWidget.hpp
src/widgets/UserInfoPopup.hpp
src/widgets/WelcomeDialog.hpp
src/widgets/Window.hpp
RESOURCES += \ RESOURCES += \
resources/resources.qrc resources/resources.qrc