mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 14:57:35 +00:00

It aligns better with the Filesystem Heirarchy Standard[1] to put our program-specific helper programs that are not intended to be executed by the user of the application in $prefix/libexec or in whatever the packager sets as the CMake equivalent. Namely, on Debian systems this should be /usr/lib/Ladybird or similar. [1] https://refspecs.linuxfoundation.org/FHS_3.0/fhs-3.0.html#usrlibexec
32 lines
1 KiB
Text
32 lines
1 KiB
Text
executable("WebWorker") {
|
|
configs += [ "//Ladybird:ladybird_config" ]
|
|
include_dirs = [
|
|
"//Userland/Libraries",
|
|
"//Userland/Services",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
"//Userland/Libraries/LibFileSystem",
|
|
"//Userland/Libraries/LibGfx",
|
|
"//Userland/Libraries/LibIPC",
|
|
"//Userland/Libraries/LibImageDecoderClient",
|
|
"//Userland/Libraries/LibJS",
|
|
"//Userland/Libraries/LibLocale",
|
|
"//Userland/Libraries/LibMain",
|
|
"//Userland/Libraries/LibProtocol",
|
|
"//Userland/Libraries/LibWeb",
|
|
"//Userland/Libraries/LibWeb:WebWorkerClientEndpoint",
|
|
"//Userland/Libraries/LibWeb:WebWorkerServerEndpoint",
|
|
"//Userland/Libraries/LibWebView",
|
|
]
|
|
sources = [
|
|
"//Ladybird/HelperProcess.cpp",
|
|
"//Ladybird/Utilities.cpp",
|
|
"//Userland/Services/WebWorker/ConnectionFromClient.cpp",
|
|
"//Userland/Services/WebWorker/DedicatedWorkerHost.cpp",
|
|
"//Userland/Services/WebWorker/PageHost.cpp",
|
|
"main.cpp",
|
|
]
|
|
output_dir = "$root_out_dir/libexec"
|
|
}
|