glbinding: remove options
This commit is contained in:
parent
4a872a507b
commit
b154f28609
1 changed files with 2 additions and 8 deletions
|
@ -12,19 +12,13 @@ class Glbinding < Formula
|
|||
sha256 "206ed78988d76389de106d58d8b8ffb8417fc1e48ed32141f58e3ebc1f41b77e" => :el_capitan
|
||||
end
|
||||
|
||||
option "with-glfw", "Enable tools that display OpenGL information for your system"
|
||||
option "with-static", "Build static instead of shared glbinding libraries"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "glfw" => :optional
|
||||
|
||||
needs :cxx11
|
||||
|
||||
def install
|
||||
ENV.cxx11
|
||||
args = std_cmake_args
|
||||
args << "-DGLFW_LIBRARY_RELEASE=" if build.without? "glfw"
|
||||
args << "-DBUILD_SHARED_LIBS:BOOL=OFF" if build.with? "static"
|
||||
system "cmake", ".", *args
|
||||
system "cmake", ".", *std_cmake_args, "-DGLFW_LIBRARY_RELEASE="
|
||||
system "cmake", "--build", ".", "--target", "install"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue