mirror of
https://github.com/RGBCube/serenity
synced 2025-07-05 20:47:36 +00:00
11 lines
242 B
Text
11 lines
242 B
Text
config("pthread_config") {
|
|
visibility = [ ":pthread" ]
|
|
libs = [ "pthread" ]
|
|
}
|
|
|
|
group("pthread") {
|
|
# On Android, bionic has built-in support for pthreads.
|
|
if (current_os != "android") {
|
|
public_configs = [ ":pthread_config" ]
|
|
}
|
|
}
|