Following the tutorials on http://www.ostricher.com/tag/scons/, I rebuilt the build system so that SConscript files are *much* easier to write.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SConscript
 | 
						|
# vim: set ft=python:
 | 
						|
# Eryn Wells <eryn@erynwells.me>
 | 
						|
 | 
						|
Library('gtest', [
 | 
						|
    'gtest-all.cc',
 | 
						|
    'gtest-death-test.cc',
 | 
						|
    'gtest-filepath.cc',
 | 
						|
    'gtest-port.cc',
 | 
						|
    'gtest-printers.cc',
 | 
						|
    'gtest-test-part.cc',
 | 
						|
    'gtest-typed-test.cc',
 | 
						|
    'gtest.cc',
 | 
						|
    'gtest_main.cc'
 | 
						|
])
 |