Update of /cvsroot/mockpp/mockpp/mockpp/docs/en
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24721/mockpp/docs/en
Modified Files:
appendix.docbook
Log Message:
optionally disable exceptions
Index: appendix.docbook
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/docs/en/appendix.docbook,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- appendix.docbook 19 Nov 2005 19:14:29 -0000 1.11
+++ appendix.docbook 28 Nov 2005 19:03:09 -0000 1.12
@@ -53,6 +53,37 @@
</listitem>
</varlistentry>
+ <varlistentry>
+ <term>--enable-doxygen</term>
+ <listitem>This option generates and installs the api documentation.
+ <application>doxygen</application> must be installed in this case.
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>--enable-docbook</term>
+ <listitem>If you what to generate and install the handbook, you must
+ provide this parameter.
+ <application>docbook</application> must be installed in this case.
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>--disable-rtti</term>
+ <listitem>Some environments don't use runtime type information
+ to reduce the size of the footprint of the binaries. In this case
+ the according debugging information is omitted.
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term>--disable-exceptions</term>
+ <listitem>Some environments don't use exceptions for similar reasons.
+ All features based on try and catch statements don't work in this case
+ and you must provide your own way to collect the test results.
+ </listitem>
+ </varlistentry>
+
</variablelist>
|