aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2018-12-26 19:33:20 +0100
committerDavid Skoland <davidskoland@gmail.com>2018-12-26 19:33:20 +0100
commitbc3b41a29ba0600c28883e7feac2e10929fd44ec (patch)
treee7dad031f239719d18f0d4d7c8455a498c140f36
parentc353b3f24ffb40611697565a8fcb5f310b5eedea (diff)
parentfa24d4bd865a240f3c884dcb74253e9aed7fd072 (diff)
Merge branch 'master' of github.com:OmniTroid/AO2-Client
-rw-r--r--README.md2
-rw-r--r--README_BUILD.md42
2 files changed, 43 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5e6adb24..0416e4a3 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Attorney Online 2
+# Attorney Online
[Attorney Online](https://aceattorneyonline.com) is an online version of the world-renowned courtroom drama simulator that allows you to create and play out cases in an off-the-cuff format.
diff --git a/README_BUILD.md b/README_BUILD.md
new file mode 100644
index 00000000..da13bdc1
--- /dev/null
+++ b/README_BUILD.md
@@ -0,0 +1,42 @@
+### Dependencies
+
+This program has five main dependencies
+
+* Qt 5.6+ (https://www.qt.io/download)
+* BASS (http://www.un4seen.com/bass.html)
+* BASS Opus Plugin (http://www.un4seen.com/bass.html#addons)
+* Discord Rich Presence (https://github.com/discordapp/discord-rpc/releases)
+* Qt Apng Plugin (https://github.com/Skycoder42/QtApng/releases)
+
+### How to build dynamically (the easy way)
+
+What you want to do is first download the latest version of Qt from the first link. (get the prebuilt dynamic version)
+If you're on Ubuntu, go to the scripts/ folder and run configure_ubuntu.sh. This should fetch all the required dependencies automatically.
+If not, go to each one of the links above and find the right dynamic library for your platform:
+* Windows: .dll
+* Linux: .so
+* Mac: .dylib
+
+And put them in BOTH lib/ and the repository root (lib/ is required for linking and root is required for runtime)
+
+Launch Qt creator, open the .pro file and try running it. Ask in the Discord if you're having issues: https://discord.gg/wWvQ3pw
+
+### How to build statically (the hard way)
+
+You're gonna have a bad time.
+
+Building statically means you can distribute the final program without needing to pack alongside a lot of dynamic libraries.
+This is a tricky process and is not recommended unless you know what you're doing.
+
+First, you need to build the entirety of Qt statically. To do this, check the desired version under "Sources" in the Qt maintenance tool.
+After this is done, follow these instructions: https://dimitris.apeiro.gr/2015/06/24/build-a-static-qt5-for-windows-by-compiling/
+This guide is specifically for Windows, but Qt is cross-platform and you should be good with or without some minor adjustments to the guide.
+Note that this **is** a computationally heavy process and will take a lot of time on a slow computer.
+After this, you need to configure the project to use the static version of qmake (see http://doc.qt.io/qtcreator/creator-build-settings.html)
+
+BASS and BASS Opus only comes as dynamic libraries and is not open-source. That means you can't link it statically in the program.
+
+For Discord RPC, you can download prebuilt static libraries for your platform. Just put them in lib/.
+
+For Qt Apng Plugin, you need to compile it statically. This guide does not go into detail how to configure this to build a static library. You may have to add Q_IMPORT_PLUGIN(ApngImagePlugin); in main.cpp. See more about importing static plugins here: http://doc.qt.io/qt-5/plugins-howto.html#static-plugins
+