Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -612,8 +612,8 @@ jobs:
simd: sse4.2,avx2
ctest_test_timeout: 1200
setenvs: export MACOSX_DEPLOYMENT_TARGET=12.0
INSTALL_QT=0 INSTALL_OPENCV=0
optional_deps_append: 'OpenCV;Qt5;Qt6'
INSTALL_QT=0 INSTALL_OPENCV=0 INSTALL_OPENVDB=0
optional_deps_append: 'OpenCV;OpenVDB;Qt5;Qt6'
benchmark: 1
- desc: MacOS-14-ARM aclang15/C++20/py3.13
runner: macos-14
Expand Down
4 changes: 3 additions & 1 deletion src/build-scripts/install_homebrew_deps.bash
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ if [[ "$OIIO_BREW_INSTALL_PACKAGES" == "" ]] ; then
opencolorio \
openexr \
openjpeg \
openvdb \
ptex \
pybind11 \
robin-map \
Expand All @@ -50,6 +49,9 @@ if [[ "$OIIO_BREW_INSTALL_PACKAGES" == "" ]] ; then
if [[ "${USE_OPENCV:=}" != "0" ]] && [[ "${INSTALL_OPENCV:=1}" != "0" ]] ; then
OIIO_BREW_INSTALL_PACKAGES+=" opencv"
fi
if [[ "${USE_OPENVDB:=1}" != "0" ]] && [[ "${INSTALL_OPENVDB:=1}" != "0" ]] ; then
OIIO_BREW_INSTALL_PACKAGES+=" openvdb"
fi
if [[ "${USE_QT:=1}" != "0" ]] && [[ "${INSTALL_QT:=1}" != "0" ]] ; then
OIIO_BREW_INSTALL_PACKAGES+=" qt${QT_VERSION}"
fi
Expand Down
Loading