public
Description: Haden is the MaNGOS core library written in C++, providing access to databases, various file formats, network, and offering serveral tools for cross platform development.
Homepage: http://getmangos.com/wiki/Haden
Clone URL: git://github.com/mangos/haden.git
Search Repo:
haden /
name age message
folder .gitignore Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder AUTHORS Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder COPYING Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder ChangeLog Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder Doxyfile.in Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder FILES Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder HACKING Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder Makefile.am Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder NEWS Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder README Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder THANKS Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder TODO Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder autogen.sh Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder bcpp.cfg Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder configure.ac Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder include/ Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder indent-sources Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder libhaden.pc.in Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder m4/ Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder src/ Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
folder tests/ Mon Jul 21 04:20:19 -0700 2008 Created the initial source tree for Haden and a... [mangos]
README
= Haden (C++ cross platform core library)

== Requirements
* Florigon 0.1+: http://getmangos.com/wiki/Florigon
* Optional: CppUnit 1.12.0+ http://sourceforge.net/projects/cppunit/
* Optional: Doxygen 1.5+ http://www.doxygen.org/

== Synopsis
Haden is the MaNGOS core library written in C++, providing access to databases,
various file formats, network, and offering serveral tools for cross platform
development.

== Installation
The Haden ORM is configured and installed by using the standard autotools
approach. If you have downloaded Haden from the GIT source repository,
please run the following command first to create the configure script:

  $ autoreconf --install --force

To configure, build and install Haden, use the following commands:

  $ ./configure
  $ make
  $ make test DBCONFIG=sqlite://test.sqlite (optional)
  $ su root
  # make install

== Configuration
Haden does not need any configuration. During the configure run, it will do
all the hard work for you, and detect any usable installation of SQLite, MySQL,
and PostgreSQL (which means: you need to have the development libraries and
headers for any of these database backends installed).

== Known issues
See the notes at http://getmangos.com/wiki/Haden

== License
Haden (C++ cross platform core library)
Copyright (C) 2008  Mangos Foundation http://getmangos.com/

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.