aws-sdk-cpp: remove options

This commit is contained in:
FX Coudert 2018-09-26 16:50:49 +02:00
parent a8b53d6a39
commit 67a4f5d85f

View file

@ -15,14 +15,12 @@ class AwsSdkCpp < Formula
end
option "with-static", "Build with static linking"
option "without-http-client", "Don't include the libcurl HTTP client"
depends_on "cmake" => :build
def install
args = std_cmake_args
args << "-DSTATIC_LINKING=1" if build.with? "static"
args << "-DNO_HTTP_CLIENT=1" if build.without? "http-client"
mkdir "build" do
system "cmake", "..", *args