1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-08 18:02:05 +03:00
Files
proxygen/build/fbcode_builder/specs/gmock.py
Chad Austin 4fb4756ec9 remove legacy __future__ imports
Summary: The future is now.

Reviewed By: xavierd

Differential Revision: D33714537

fbshipit-source-id: 8d282bbe7391c4b72b70dab54a5c252060fba457
2022-01-24 20:23:34 -08:00

21 lines
572 B
Python

#!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates.
def fbcode_builder_spec(builder):
builder.add_option("google/googletest:git_hash", "release-1.8.1")
builder.add_option(
"google/googletest:cmake_defines",
{
"BUILD_GTEST": "ON",
# Avoid problems with MACOSX_RPATH
"BUILD_SHARED_LIBS": "OFF",
},
)
return {
"steps": [
builder.github_project_workdir("google/googletest", "build"),
builder.cmake_install("google/googletest"),
],
}