mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:27:34 +00:00
LibDiff: Add library for working with diffs
LibDiff currently contains functionality for parsing diffs in the "unified format" and for a generating simple diff that contains only additions.
This commit is contained in:
parent
7c70183f3f
commit
11440fa78f
6 changed files with 293 additions and 0 deletions
8
Libraries/LibDiff/CMakeLists.txt
Normal file
8
Libraries/LibDiff/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
set(SOURCES
|
||||
Hunks.cpp
|
||||
Format.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibDiff diff)
|
||||
target_link_libraries(LibDiff LibC)
|
Loading…
Add table
Add a link
Reference in a new issue