aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Built: support generating test coverage reportMu Qiao2011-05-141-1/+1
| | | | | A new target "test_coverage" is created to generate test coverage report in html format. To use that, you need to have lcov installed.
* Add developer option to autotoolsPetteri Räty2011-03-261-1/+1
| | | | | | When you give --enable-developer to configure sources get built with -Wall -Werror. In this case boost 1.45 seems to give errors so boost 1.46.1 is marked as the needed version.
* Handle autoreconf warningsPetteri Räty2010-08-281-1/+1
| | | | | | | Enable warnings in autogen.sh by passing -W all to autoreconf. This pointed out things that are now fixed. AC_CHECK_FILE assumes you are checking for a runtime file so it fails for cross compiling and as such is not for our usage. Instead configure.ac now uses test -f.
* autogen.sh simplification and documentationPetteri Räty2010-08-281-5/+1
| | | | | Update README for autogen.sh and slonopotamus pointed out that autogen.sh could be simply just autoreconf -i.
* Add autogen.shPetteri Räty2010-08-281-0/+6
After all recent changes getting the build system running from a clean clone was not a matter of simple autoreconf so created autogen.sh that has all the needed commands. It ends with ./configure because --enable-gtest needs to be passed.