mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 15:27:42 +00:00
25 lines
471 B
Text
25 lines
471 B
Text
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",
|
|
"Encoder.cpp",
|
|
"Encoder.h",
|
|
"File.h",
|
|
"Forward.h",
|
|
"Message.h",
|
|
"MultiServer.h",
|
|
"SingleServer.h",
|
|
"Stub.h",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
}
|