Skip to content
Stephane Carrez edited this page Apr 19, 2016 · 3 revisions

Ada Wiki Engine Installation

Configure

Before building the library you should configure it as follows:

   ./configure

By default the configure is setup to use the Ada Utility Library. You can disable that by using the with-ada-util=no configure option. When disabled, the build will use some locally imported files (in src/util) but the unit tests will not be compiled.

   ./configure --with-ada-util=no

Other configure options:

  • --prefix=directory Defines the base installation path (default is /usr/local)
  • --enable-shared Enable the generation and build of the shared library.

Build

The library is built by running the make command:

   make

Installation

The installation is done by the following command:

   make install

Clone this wiki locally