1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 20:55:08 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibIDL/BUILD.gn
Andrew Kaster 7b3d0fb002 Meta: Add gn rules for dependencies of LibWeb
There's a lot of them, and LibWeb is a massive set of files to build as
well, so let's add these first :^).
2023-07-09 16:22:58 -06:00

13 lines
256 B
Text

shared_library("LibIDL") {
output_name = "idl"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"IDLParser.cpp",
"Types.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibFileSystem",
]
}