blob: 1267e4f37368e413a7d1469a4815f14dd99a4314 [file] [log] [blame]
# Description:
# Portable pthread-based thread pool for C and C++
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
exports_files(["LICENSE"])
cc_library(
name = "pthreadpool",
srcs = [
"src/threadpool-pthreads.c",
"src/threadpool-utils.h",
],
hdrs = [
"include/pthreadpool.h",
],
copts = [
"-O2",
],
defines = [
"PTHREADPOOL_NO_DEPRECATED_API",
],
includes = [
"include",
],
strip_include_prefix = "include",
deps = [
"@FXdiv",
],
)