Update to build 26

This commit is contained in:
Malcolm Noyes
2014-02-20 15:49:51 +00:00
19 changed files with 1339 additions and 269 deletions

View File

@@ -9,7 +9,7 @@
#pragma clang diagnostic ignored "-Wpadded"
#endif
#include "internal/clara.h"
#include "internal/clara.h" // This will does not declare Clara within the Catch namespace
#include "catch.hpp"

View File

@@ -18,7 +18,7 @@
template<size_t size>
void parseIntoConfig( const char * (&argv)[size], Catch::ConfigData& config ) {
Clara::CommandLine<Catch::ConfigData> parser = Catch::makeCommandLineParser();
Catch::Clara::CommandLine<Catch::ConfigData> parser = Catch::makeCommandLineParser();
parser.parseInto( size, argv, config );
}

View File

@@ -1,5 +1,7 @@
SOURCES = ApproxTests.cpp \
BDDTests.cpp \
ClassTests.cpp \
CmdLineTests.cpp \
ConditionTests.cpp \
ExceptionTests.cpp \
GeneratorTests.cpp \
@@ -7,7 +9,6 @@ SOURCES = ApproxTests.cpp \
MiscTests.cpp \
TestMain.cpp \
TrickyTests.cpp \
BDDTests.cpp \
VariadicMacrosTests.cpp
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
CXX = g++