BUILD.gn 253 B

1234567891011121314
  1. shared_library("LibDiff") {
  2. include_dirs = [ "//Userland/Libraries" ]
  3. sources = [
  4. "Applier.cpp",
  5. "Format.cpp",
  6. "Generator.cpp",
  7. "Hunks.cpp",
  8. ]
  9. deps = [
  10. "//AK",
  11. "//Userland/Libraries/LibCore",
  12. ]
  13. output_name = "diff"
  14. }