This is part (hopefully all) of the fixes for #776. The top-level configure.ac configures googletest first and then googlemock. With this changes it is possible to embed googletest into another project that uses autoconf. For an example (though it is WIP), see the commits (and soon PR) referenced from google/protobuf#236.
		
			
				
	
	
		
			41 lines
		
	
	
		
			595 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			595 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Ignore CI build directory
 | |
| build/
 | |
| xcuserdata
 | |
| cmake-build-debug/
 | |
| .idea/
 | |
| bazel-bin
 | |
| bazel-genfiles
 | |
| bazel-googletest
 | |
| bazel-out
 | |
| bazel-testlogs
 | |
| # python
 | |
| *.pyc
 | |
| 
 | |
| # Visual Studio files
 | |
| *.sdf
 | |
| *.opensdf
 | |
| *.VC.opendb
 | |
| *.suo
 | |
| *.user
 | |
| _ReSharper.Caches/
 | |
| Win32-Debug/
 | |
| Win32-Release/
 | |
| x64-Debug/
 | |
| x64-Release/
 | |
| 
 | |
| # Ignore autoconf / automake files
 | |
| Makefile.in
 | |
| aclocal.m4
 | |
| configure
 | |
| build-aux/
 | |
| autom4te.cache/
 | |
| googletest/m4/libtool.m4
 | |
| googletest/m4/ltoptions.m4
 | |
| googletest/m4/ltsugar.m4
 | |
| googletest/m4/ltversion.m4
 | |
| googletest/m4/lt~obsolete.m4
 | |
| 
 | |
| # Ignore generated directories.
 | |
| googlemock/fused-src/
 | |
| googletest/fused-src/
 |