Skip to content

Commit

Permalink
oidn
Browse files Browse the repository at this point in the history
  • Loading branch information
howetuft committed Dec 26, 2024
1 parent 5d43e36 commit b611eee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/conan/oidn/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generate(self):
tc.variables["OIDN_FILTER_RT"] = self.options.with_filter_rt
tc.variables["OIDN_FILTER_RTLIGHTMAP"] = self.options.with_filter_rtlightmap
tc.variables["OIDN_APPS"] = self.options.with_apps
if self.settings.os == "Linux":
if self.settings.os == "Linux" or self.settings.os == "Macos":
tc.cache_variables["CMAKE_SKIP_BUILD_RPATH"] = True
tc.cache_variables["CMAKE_BUILD_RPATH_USE_ORIGIN"] = True
tc.generate()
Expand All @@ -95,7 +95,7 @@ def generate(self):
def build(self):
if self.settings.os == "Linux":
# Add a reserved tag in dynamically loaded library name
# We'll fill it later with the hash generated by repairing
# We'll fill it later, with the hash generated by repairing
replace_in_file(
self,
Path(self.source_folder) / "oidn" / "core" / "module.cpp",
Expand Down

0 comments on commit b611eee

Please sign in to comment.