1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 17:07:35 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibJIT/BUILD.gn
2023-10-27 16:51:03 -06:00

12 lines
216 B
Text

shared_library("LibJIT") {
output_name = "jit"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"Assembler.cpp",
"Assembler.h",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
}