summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-05-27 23:26:19 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-01-09 17:12:15 +0100
commit0b339e547b77f80d6e81313bfb38249ce8995553 (patch)
treef22fee0142f72042430ace070a6e6ef4493e7c39 /README
parent16074a7c2c8197a061281a6880ddbc3967d8ea0c (diff)
downloadmanaserv-0b339e547b77f80d6e81313bfb38249ce8995553.tar.gz
manaserv-0b339e547b77f80d6e81313bfb38249ce8995553.tar.xz
manaserv-0b339e547b77f80d6e81313bfb38249ce8995553.zip
Replaced EventListener with signals based on libsigc++
This replaces the rather hard to understand event dispatcher with a probably even harder to understand templated library, but fortunately we can rely on the available documentation. Hopefully it will also help with the readability of our code and with adding additional signals to other classes. Added libsigc++ to README and Travis CI configuration. Reviewed-by: Erik Schilling
Diffstat (limited to 'README')
-rw-r--r--README13
1 files changed, 7 insertions, 6 deletions
diff --git a/README b/README
index 06e56ce..34faafc 100644
--- a/README
+++ b/README
@@ -6,15 +6,16 @@ COMPILATION
Before trying to compile, make sure all the dependencies are installed. For
each dependency the Ubuntu package name is listed as well as the website.
- * libxml2 (libxml2-dev) - http://xmlsoft.org/
- * Lua (liblua5.1-0-dev) - http://lua.org/
- * PhysFS (libphysfs-dev) - http://icculus.org/physfs/
- * SQLite 3 (libsqlite3-dev) - http://sqlite.org/
- * zlib (zlib1g-dev) - http://zlib.net/
+ * libsigc++ 2.0 (libsigc++-2.0-dev) - http://libsigc.sourceforge.net/
+ * libxml2 (libxml2-dev) - http://xmlsoft.org/
+ * Lua (liblua5.1-0-dev) - http://lua.org/
+ * PhysFS (libphysfs-dev) - http://icculus.org/physfs/
+ * SQLite 3 (libsqlite3-dev) - http://sqlite.org/
+ * zlib (zlib1g-dev) - http://zlib.net/
Optional dependencies:
- * MySQL (libmysqlclient-dev) - http://dev.mysql.com/
+ * MySQL (libmysqlclient-dev) - http://dev.mysql.com/
(replaces the SQLite 3 depency)