1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:57:45 +00:00

Meta: Port recent changes to gn build

299d35aadc
7d9fe44039
58f08107b0
2cb0039a13
bc70144df1
48a9d0ede8
149e382735
This commit is contained in:
Andrew Kaster 2023-12-12 20:25:27 -07:00 committed by Andrew Kaster
parent e0f990f1cb
commit 6e4d5b310f
5 changed files with 75 additions and 4 deletions

View file

@ -4,9 +4,18 @@ shared_library("LibJIT") {
sources = [
"Assembler.cpp",
"Assembler.h",
"GDB.cpp",
"GDB.h",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
if (current_os == "mac") {
sources += [ "GDBUnsupported.cpp" ]
} else {
sources += [ "GDBElf.cpp" ]
deps += [ "//Userland/Libraries/LibELF" ]
}
}