mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 21:05:39 +02:00
Add tests for single include
This commit is contained in:
21
single_include_projects/SelfTest/makefile
Normal file
21
single_include_projects/SelfTest/makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
SOURCES = ApproxTests.cpp \
|
||||
BDDTests.cpp \
|
||||
ClassTests.cpp \
|
||||
CmdLineTests.cpp \
|
||||
ConditionTests.cpp \
|
||||
ExceptionTests.cpp \
|
||||
GeneratorTests.cpp \
|
||||
MessageTests.cpp \
|
||||
MiscTests.cpp \
|
||||
TestMain.cpp \
|
||||
TrickyTests.cpp \
|
||||
VariadicMacrosTests.cpp
|
||||
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
|
||||
CXX = g++
|
||||
CXXFLAGS = -I../../single_include
|
||||
|
||||
CatchSelfTest: $(OBJECTS)
|
||||
$(CXX) -o $@ $^
|
||||
|
||||
clean:
|
||||
rm -f CatchSelfTest CatchSelfTest.exe $(OBJECTS)
|
Reference in New Issue
Block a user