我是用apt安装的
sudo apt install -y libcppunit-dev libcppunit-doc
mkdir -p ~/doc
ln -s /usr/share/doc/libcppunit-doc/html/index.html ~/doc/cppunit.html
安装的版本是1.13.2-2.1
。
然后
firefox ~/doc/cppunit.html
就可以在浏览器打开安装的文档了。
文档里有一个Money, a step by step
example,但是在我这跑不通,这里记录一下解决方法。
- 把configure.in
改成configure.ac
。
- 把#include "stdafx.h"
删掉。
- aclocal -I /usr/share/aclocal
-
touch NEWS README AUTHORS ChangeLog # To make automake happy
要放到automake -a
前面。
最后执行make check
就好了。