mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
There's a lot of them, and LibWeb is a massive set of files to build as well, so let's add these first :^).
14 lines
256 B
Plaintext
14 lines
256 B
Plaintext
shared_library("LibIDL") {
|
|
output_name = "idl"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"IDLParser.cpp",
|
|
"Types.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibFileSystem",
|
|
]
|
|
}
|