1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 21:35:07 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibX86/BUILD.gn
2023-10-29 16:03:43 -06:00

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",
]
}