mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:54:58 +00:00
18 lines
364 B
Text
18 lines
364 B
Text
shared_library("LibJIT") {
|
|
output_name = "jit"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"Assembler.cpp",
|
|
"Assembler.h",
|
|
"GDB.cpp",
|
|
"GDB.h",
|
|
]
|
|
deps = [ "//AK" ]
|
|
|
|
if (current_os == "mac") {
|
|
sources += [ "GDBUnsupported.cpp" ]
|
|
} else {
|
|
sources += [ "GDBElf.cpp" ]
|
|
deps += [ "//Userland/Libraries/LibELF" ]
|
|
}
|
|
}
|