mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 03:56:16 +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
Notes:
sideshowbarker
2024-07-19 02:37:27 +09:00
Author: https://github.com/itamar8910
Commit: 11440fa78f
Pull-request: https://github.com/SerenityOS/serenity/pull/3470
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/devsh0
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