1
Fork 0
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:
Itamar 2020-09-12 20:38:55 +03:00 committed by Andreas Kling
parent 7c70183f3f
commit 11440fa78f
6 changed files with 293 additions and 0 deletions

View file

@ -0,0 +1,8 @@
set(SOURCES
Hunks.cpp
Format.cpp
)
serenity_lib(LibDiff diff)
target_link_libraries(LibDiff LibC)