summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-07-06 20:36:36 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-07-06 20:36:36 +0000
commite3233e2ff1486e66bb85f81a4ac24f2a9a846a5c (patch)
treef7c586f8238d1a1c36f2e2e523a182fc2bb2f13e /README
parentda53c2c10d2e531e8779f6f3849ac73938b6f902 (diff)
Add configure option to disable RTTI for class name.
Diffstat (limited to 'README')
-rw-r--r--README23
1 files changed, 21 insertions, 2 deletions
diff --git a/README b/README
index a9fc8e2..868d20d 100644
--- a/README
+++ b/README
@@ -1,4 +1,23 @@
+ CppUnit --- The C++ Unit Test Library
+ -------------------------------------
+ http://cppunit.sourceforge.net
-The official CppUnit Homepage can be found at:
- http://cppunit.sourceforge.net
+
+
+ INSTALLATION using configure script
+ -----------------------------------
+
+See the file INSTALL for basic instructions. A short explanation for
+each non-standard configure option follows.
+
+ --disable-typeinfo-name
+
+Some output from the library will use a class name to distinguish
+between tests. Normally, the Run-Time Type Information system is
+used (specifically, the type_info::name() function) to generate
+the name. Some compilers return human-readable names via this
+interface. Other compilers do not.
+
+If your compiler does not generate a pleasing class name, specify
+this option; the names will be generated by other means.