mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 03:02:24 +01:00
19 lines
410 B
Makefile
19 lines
410 B
Makefile
SOURCES = ApproxTests.cpp ClassTests.cpp ConditionTests.cpp \
|
|
ExceptionTests.cpp GeneratorTests.cpp MessageTests.cpp \
|
|
MiscTests.cpp TestMain.cpp TrickyTests.cpp \
|
|
catch_self_test.cpp
|
|
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
|
|
|
|
CXXFLAGS = -I../../include
|
|
|
|
main: $(OBJECTS)
|
|
$(CXX) -o $@ $^
|
|
|
|
junit: main
|
|
-./main -r junit > junit.xml
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) main junit.xml
|
|
|
|
.PHONY: main junit
|