Commit 093067ce authored by Luca Niccolini's avatar Luca Niccolini Committed by Facebook Github Bot

Deprecate autoconf

Summary:
Remove all the autoconf files.
And fully switch to the cmake build

Reviewed By: udippant

Differential Revision: D16066986

fbshipit-source-id: 9e3082dded77ce85449cf5a3a03bed31c16b711f
parent 72c08f7b
...@@ -7,14 +7,17 @@ from __future__ import unicode_literals ...@@ -7,14 +7,17 @@ from __future__ import unicode_literals
import specs.folly as folly import specs.folly as folly
import specs.fizz as fizz import specs.fizz as fizz
import specs.mvfst as mvfst
import specs.sodium as sodium import specs.sodium as sodium
import specs.wangle as wangle import specs.wangle as wangle
import specs.zstd as zstd
def fbcode_builder_spec(builder): def fbcode_builder_spec(builder):
builder.add_option(
"proxygen/proxygen:cmake_defines", {"BUILD_QUIC": "OFF", "BUILD_TESTS": "ON"}
)
return { return {
'depends_on': [folly, wangle, fizz, sodium], "depends_on": [folly, wangle, fizz, sodium, zstd, mvfst],
'steps': [ "steps": [builder.fb_github_cmake_install("proxygen/proxygen", "..")],
builder.fb_github_autoconf_install('proxygen/proxygen'),
],
} }
...@@ -14,7 +14,9 @@ import specs.zstd as zstd ...@@ -14,7 +14,9 @@ import specs.zstd as zstd
def fbcode_builder_spec(builder): def fbcode_builder_spec(builder):
builder.add_option("proxygen/proxygen:cmake_defines", {"BUILD_QUIC": "ON"}) builder.add_option(
"proxygen/proxygen:cmake_defines", {"BUILD_QUIC": "ON", "BUILD_TESTS": "ON"}
)
return { return {
"depends_on": [folly, wangle, fizz, sodium, zstd, mvfst], "depends_on": [folly, wangle, fizz, sodium, zstd, mvfst],
"steps": [builder.fb_github_cmake_install("proxygen/proxygen", "..")], "steps": [builder.fb_github_cmake_install("proxygen/proxygen", "..")],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment