Skip to content

Commit 65b297a

Browse files
committed
Don't build docs for OSL 1.13
Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>
1 parent dddb23b commit 65b297a

File tree

4 files changed

+3
-349
lines changed

4 files changed

+3
-349
lines changed

packages/conan/recipes/osl/conanfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ def generate(self):
107107
tc.variables["USE_PYTHON"] = self.options.with_python
108108
tc.variables["USE_QT"] = self.options.with_qt
109109
tc.variables["OPTIXHOME"] = "/usr/local/NVIDIA-OptiX-SDK-9.0.0" # ASWF FIXME
110+
if Version(self.version) <= "1.13":
111+
tc.variables["INSTALL_DOCS"] = "OFF" # skip documentation build
110112

111113
tc.generate()
112114
cd = CMakeDeps(self)
@@ -116,7 +118,7 @@ def build(self):
116118
apply_conandata_patches(self)
117119
cmake = CMake(self)
118120
cmake.configure()
119-
cmake.build()
121+
cmake.build(cli_args=["--verbose"])
120122

121123
def package(self):
122124
# ASWF: license files in package subdirectory

packages/conan/recipes/osl/patches/1.13.11.0-cmake-oiio-imath-includes.patch_IMATHX

Lines changed: 0 additions & 176 deletions
This file was deleted.

packages/conan/recipes/osl/patches/1.14.7.0-cmake-oiio-imath-includes.patch_BEFORE_PTX

Lines changed: 0 additions & 158 deletions
This file was deleted.

packages/conan/recipes/osl/patches/1.14.7.0-find-llvm-binaries.patch_ALL_GONE

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)