mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Summary: Update the fbcode_builder spec for folly to build folly using its newer CMake build scripts, rather than autoconf. Reviewed By: yfeldblum Differential Revision: D6793682 fbshipit-source-id: b724cf8be4a1afe20bd96e6113395a4fd44c438a
14 lines
316 B
Python
14 lines
316 B
Python
#!/usr/bin/env python
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
'steps': [
|
|
builder.fb_github_cmake_install('folly/folly'),
|
|
],
|
|
}
|