mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 10:05:07 +00:00
13 lines
234 B
Text
13 lines
234 B
Text
shared_library("LibDiff") {
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Format.cpp",
|
|
"Generator.cpp",
|
|
"Hunks.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
output_name = "diff"
|
|
}
|