mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:22:45 +00:00 
			
		
		
		
	 5e28da1aa4
			
		
	
	
		5e28da1aa4
		
	
	
	
	
		
			
			For now this is just a standard implementation of the longest common subsequence algorithm over the lines, except that it doesn't do any coalescing of the lines. This isn't really ideal since we get a single Hunk per changed line, and is definitely something to improve in the future.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			126 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			126 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| 
 | |
| set(SOURCES
 | |
|     Format.cpp
 | |
|     Generator.cpp
 | |
|     Hunks.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibDiff diff)
 | |
| target_link_libraries(LibDiff LibC)
 |