diff options
Diffstat (limited to 'Attorney_Online_remake.pro')
| -rw-r--r-- | Attorney_Online_remake.pro | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/Attorney_Online_remake.pro b/Attorney_Online_remake.pro index 86a86073..62a7dc98 100644 --- a/Attorney_Online_remake.pro +++ b/Attorney_Online_remake.pro @@ -5,15 +5,14 @@ #------------------------------------------------- QT += core gui multimedia network - greaterThan(QT_MAJOR_VERSION, 4): QT += widgets RC_ICONS = logo.ico -TARGET = Attorney_Online_remake +TARGET = Attorney_Online TEMPLATE = app -VERSION = 2.4.10.0 +VERSION = 2.6.0.0 SOURCES += main.cpp\ lobby.cpp \ @@ -48,7 +47,10 @@ SOURCES += main.cpp\ aolineedit.cpp \ aotextedit.cpp \ aoevidencedisplay.cpp \ - discord_rich_presence.cpp + discord_rich_presence.cpp \ + aooptionsdialog.cpp \ + chatlogpiece.cpp \ + aocaseannouncerdialog.cpp HEADERS += lobby.h \ aoimage.h \ @@ -78,18 +80,23 @@ HEADERS += lobby.h \ aotextedit.h \ aoevidencedisplay.h \ discord_rich_presence.h \ - discord-rpc.h - -# You need to compile the Discord Rich Presence SDK separately and add the lib/headers. -# Discord RPC uses CMake, which does not play nicely with QMake, so this step must be manual. + discord-rpc.h \ + aooptionsdialog.h \ + text_file_functions.h \ + chatlogpiece.h \ + aocaseannouncerdialog.h -unix:LIBS += -L$$PWD -ldiscord-rpc -win32:LIBS += -L$$PWD -ldiscord-rpc #"$$PWD/discord-rpc.dll" +# 1. You need to get BASS and put the x86 bass DLL/headers in the project root folder +# AND the compilation output folder. If you want a static link, you'll probably +# need the .lib file too. MinGW-GCC is really finicky finding BASS, it seems. +# 2. You need to compile the Discord Rich Presence SDK separately and add the lib/headers +# in the same way as BASS. Discord RPC uses CMake, which does not play nicely with +# QMake, so this step must be manual. +unix:LIBS += -L$$PWD -lbass -ldiscord-rpc +win32:LIBS += -L$$PWD "$$PWD/bass.dll" -ldiscord-rpc CONFIG += c++11 -ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android - RESOURCES += \ resources.qrc |
