mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 19:22:25 +01:00
Merge branch 'selftest' of github.com:wichert/Catch into wichert-selftest
This commit is contained in:
commit
5bb05400af
15
projects/SelfTest/Makefile
Normal file
15
projects/SelfTest/Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
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 $@ $^
|
||||
|
||||
clean:
|
||||
rm -f $(OBJECTS) main
|
||||
|
||||
.PHONY: main clean
|
Loading…
Reference in New Issue
Block a user