• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python
2
3
4import confu
5parser = confu.standard_parser("pthreadpool configuration script")
6
7
8def main(args):
9    options = parser.parse_args(args)
10    build = confu.Build.from_options(options)
11
12    build.export_cpath("include", ["pthreadpool.h"])
13
14    with build.options(source_dir="src", extra_include_dirs="src", deps=build.deps.fxdiv):
15        sources = ["threadpool-legacy.c"]
16        if build.target.is_emscripten:
17            sources.append("threadpool-shim.c")
18        else:
19            sources.append("threadpool-pthreads.c")
20        build.static_library("pthreadpool", [build.cc(src) for src in sources])
21
22    with build.options(source_dir="test", deps=[build, build.deps.googletest]):
23        build.unittest("pthreadpool-test", build.cxx("pthreadpool.cc"))
24
25    with build.options(source_dir="bench", deps=[build, build.deps.googlebenchmark]):
26        build.benchmark("latency-bench", build.cxx("latency.cc"))
27        build.benchmark("throughput-bench", build.cxx("throughput.cc"))
28
29    return build
30
31
32if __name__ == "__main__":
33    import sys
34    main(sys.argv[1:]).generate()
35