mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 17:25:09 +00:00
22 lines
401 B
Text
22 lines
401 B
Text
shared_library("LibELF") {
|
|
output_name = "elf"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"AuxiliaryVector.h",
|
|
"Core.h",
|
|
"ELFABI.h",
|
|
"ELFBuild.cpp",
|
|
"ELFBuild.h",
|
|
"Hashes.h",
|
|
"Image.cpp",
|
|
"Image.h",
|
|
"Relocation.cpp",
|
|
"Relocation.h",
|
|
"Validation.cpp",
|
|
"Validation.h",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
}
|