110 lines
2.2 KiB
Prolog
110 lines
2.2 KiB
Prolog
QT += core gui websockets network sql multimedia
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
CONFIG += c++11 debug
|
|
CONFIG -= app_bundle
|
|
|
|
# Для MinGW
|
|
win32: {
|
|
LIBS += -lole32 -loleaut32 -luuid -lstrmiids -lquartz -ldsound
|
|
LIBS += -lwinmm
|
|
}
|
|
|
|
# Для MSVC (если используете Visual Studio)
|
|
# win32:msvc {
|
|
# LIBS += strmiids.lib quartz.lib ole32.lib oleaut32.lib uuid.lib
|
|
# }
|
|
|
|
RC_ICONS = ico\app_icon.ico
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
SOURCES += \
|
|
commandprocessor.cpp \
|
|
countermanager.cpp \
|
|
emoteprovider.cpp \
|
|
fcolorsetting.cpp \
|
|
fcreatechat.cpp \
|
|
fcreatenotify.cpp \
|
|
ffontsetting.cpp \
|
|
filemanager.cpp \
|
|
fsettingsws.cpp \
|
|
fsinglegrid.cpp \
|
|
logmanager.cpp \
|
|
main.cpp \
|
|
mediafilemanager.cpp \
|
|
neuralnetworkmanager.cpp \
|
|
neuraltemplatemanager.cpp \
|
|
randommanager.cpp \
|
|
randomresponses.cpp \
|
|
soundmanager.cpp \
|
|
tauth.cpp \
|
|
ttw_api.cpp \
|
|
twitchmessage.cpp \
|
|
udatabase.cpp \
|
|
ugeneral.cpp \
|
|
ulink.cpp \
|
|
user.cpp \
|
|
user_manager.cpp \
|
|
userwidget.cpp \
|
|
webserverchat.cpp \
|
|
webservernotify.cpp \
|
|
websocketclient.cpp
|
|
|
|
HEADERS += \
|
|
action.h \
|
|
badge.h \
|
|
commandprocessor.h \
|
|
countermanager.h \
|
|
emoteprovider.h \
|
|
fcolorsetting.h \
|
|
fcreatechat.h \
|
|
fcreatenotify.h \
|
|
ffontsetting.h \
|
|
filemanager.h \
|
|
fsettingsws.h \
|
|
fsinglegrid.h \
|
|
logmanager.h \
|
|
mediafilemanager.h \
|
|
miniaudio.h \
|
|
neuralnetworkmanager.h \
|
|
neuraltemplatemanager.h \
|
|
randommanager.h \
|
|
randomresponses.h \
|
|
soundmanager.h \
|
|
tauth.h \
|
|
timerinfo.h \
|
|
ttw_api.h \
|
|
ttw_types.h \
|
|
twitchmessage.h \
|
|
udatabase.h \
|
|
ugeneral.h \
|
|
ulink.h \
|
|
user.h \
|
|
user_manager.h \
|
|
userwidget.h \
|
|
webserverchat.h \
|
|
webservernotify.h \
|
|
websocketclient.h
|
|
|
|
FORMS += \
|
|
fcolorsetting.ui \
|
|
fcreatechat.ui \
|
|
fcreatenotify.ui \
|
|
ffontsetting.ui \
|
|
fsettingsws.ui \
|
|
fsinglegrid.ui \
|
|
ugeneral.ui \
|
|
ulink.ui
|
|
|
|
TRANSLATIONS += \
|
|
TTW_Bot_ru_RU.ts
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
DISTFILES +=
|