initial commit of hand merging, plus getting "ancient" waf script to work correctly

This commit is contained in:
Paul Davis 2013-04-04 00:32:52 -04:00
parent 1d8bac08c0
commit aaea166135
244 changed files with 131902 additions and 7357 deletions

14
libs/canvas/test/render.h Normal file
View file

@ -0,0 +1,14 @@
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class RenderTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (RenderTest);
CPPUNIT_TEST (basics);
CPPUNIT_TEST_SUITE_END ();
public:
void basics ();
void check (std::string const &);
};