mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 14:09:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			495 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			495 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
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../../include
 | 
						|
 | 
						|
CatchSelfTest: $(OBJECTS)
 | 
						|
	$(CXX) -o $@ $^
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f CatchSelfTest CatchSelfTest.exe $(OBJECTS)
 |