mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 21:35:07 +00:00
16 lines
291 B
Text
16 lines
291 B
Text
shared_library("LibX86") {
|
|
output_name = "x86"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
sources = [
|
|
"Disassembler.h",
|
|
"ELFSymbolProvider.h",
|
|
"Instruction.cpp",
|
|
"Instruction.h",
|
|
"Interpreter.h",
|
|
]
|
|
}
|