proxygen
folly.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 # Copyright (c) Facebook, Inc. and its affiliates.
3 from __future__ import absolute_import
4 from __future__ import division
5 from __future__ import print_function
6 from __future__ import unicode_literals
7 
8 
9 def fbcode_builder_spec(builder):
10  return {
11  'steps': [
12  # on macOS the filesystem is typically case insensitive.
13  # We need to ensure that the CWD is not the folly source
14  # dir when we build, otherwise the system will decide
15  # that `folly/String.h` is the file it wants when including
16  # `string.h` and the build will fail.
17  builder.github_project_workdir('facebook/folly', '_build'),
18  builder.cmake_install('facebook/folly'),
19  ],
20  }
def fbcode_builder_spec(builder)
Definition: folly.py:9