Tweaks to allow headers to be glued together.

Added Python script to generate single header.
Added new XCode project that runs self test against single header
This commit is contained in:
Phil Nash 2011-05-24 08:23:02 +01:00
parent 4b24490e1a
commit 89d1e6c4f1
14 changed files with 6583 additions and 36 deletions

View file

@ -22,7 +22,6 @@
*/
#ifndef TWOBLUECUBES_CATCH_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_HPP_INCLUDED
#include "internal/catch_hub.h"
#include "internal/catch_test_registry.hpp"
#include "internal/catch_capture.hpp"
@ -31,6 +30,14 @@
#include "internal/catch_interfaces_exception.h"
#include "internal/catch_approx.hpp"
#if defined( CATCH_CONFIG_MAIN ) || defined( CATCH_CONFIG_RUNNER )
#include "catch_runner.hpp"
#endif
#ifdef CATCH_CONFIG_MAIN
#include "internal/catch_default_main.hpp"
#endif
#ifdef __OBJC__
#include "internal/catch_objc.hpp"
#endif