1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

Meta: Add CodeGenerators and library dependencies for them to gn build

This commit is contained in:
Andrew Kaster 2023-05-05 12:25:53 -06:00 committed by Andrew Kaster
parent cbda1a6c73
commit 05f56e09b5
12 changed files with 218 additions and 1 deletions

View file

@ -0,0 +1,26 @@
shared_library("LibIPC") {
output_name = "ipc"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"Concepts.h",
"Connection.cpp",
"Connection.h",
"ConnectionFromClient.h",
"ConnectionToServer.h",
"Decoder.cpp",
"Decoder.h",
"Dictionary.h",
"Encoder.cpp",
"Encoder.h",
"File.h",
"Forward.h",
"Message.h",
"MultiServer.h",
"SingleServer.h",
"Stub.h",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
}