mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Refactored line wrapping in Text constructor a bit
This commit is contained in:
parent
54ca219aad
commit
e43d4a2028
13
projects/SelfTest/makefile
Normal file
13
projects/SelfTest/makefile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
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))
|
||||||
|
CXX = gcc
|
||||||
|
CXXFLAGS = -I../../include
|
||||||
|
|
||||||
|
all: $(OBJECTS)
|
||||||
|
$(CXX) -o $@ $^
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(OBJECTS)
|
Loading…
Reference in New Issue
Block a user