mirror of
https://github.com/RGBCube/serenity
synced 2025-06-23 23:12:10 +00: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 :^).
12 lines
234 B
Text
12 lines
234 B
Text
shared_library("LibThreading") {
|
|
output_name = "threading"
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
sources = [
|
|
"BackgroundAction.cpp",
|
|
"Thread.cpp",
|
|
]
|
|
deps = [
|
|
"//AK",
|
|
"//Userland/Libraries/LibCore",
|
|
]
|
|
}
|