diff options
| -rw-r--r-- | Library/Formula/opencv.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Library/Formula/opencv.rb b/Library/Formula/opencv.rb index 6f779fb18..fbe0229cf 100644 --- a/Library/Formula/opencv.rb +++ b/Library/Formula/opencv.rb @@ -33,13 +33,19 @@ class Opencv < Formula DATA end + depends_on 'qt' if ARGV.include? '--with-qt' + def options - [["--32-bit", "Build 32-bit only."]] + [ + ["--32-bit", "Build 32-bit only."], + ["--with-qt", "Build qt backend."] + ] end def install args = std_cmake_parameters.split args << "-DOPENCV_EXTRA_C_FLAGS='-arch i386 -m32'" if ARGV.build_32_bit? + args << "-DWITH_QT=ON" if ARGV.include? "--with-qt" # The CMake `FindPythonLibs` Module is dumber than a bag of hammers when # more than one python installation is available---for example, it clings |
