mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-08 18:02:05 +03:00
Summary: The future is now. Reviewed By: xavierd Differential Revision: D33714537 fbshipit-source-id: 8d282bbe7391c4b72b70dab54a5c252060fba457
23 lines
700 B
Python
23 lines
700 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
builder.add_option("fmtlib/fmt:git_hash", "6.2.1")
|
|
builder.add_option(
|
|
"fmtlib/fmt:cmake_defines",
|
|
{
|
|
# Avoids a bizarred failure to run tests in Bistro:
|
|
# test_crontab_selector: error while loading shared libraries:
|
|
# libfmt.so.6: cannot open shared object file:
|
|
# No such file or directory
|
|
"BUILD_SHARED_LIBS": "OFF",
|
|
},
|
|
)
|
|
return {
|
|
"steps": [
|
|
builder.github_project_workdir("fmtlib/fmt", "build"),
|
|
builder.cmake_install("fmtlib/fmt"),
|
|
],
|
|
}
|