Files
engine/modules/denoise/config.py
T

13 lines
495 B
Python
Raw Normal View History

2020-05-01 09:34:23 -03:00
def can_build(env, platform):
# Thirdparty dependency OpenImage Denoise includes oneDNN library
2021-08-28 17:40:32 -05:00
# and the version we use only supports x86_64.
# It's also only relevant for tools build and desktop platforms,
2022-08-28 20:27:45 +02:00
# as doing lightmap generation and denoising on Android or Web
# would be a bit far-fetched.
2022-07-20 09:28:22 +03:00
desktop_platforms = ["linuxbsd", "macos", "windows"]
return env["tools"] and platform in desktop_platforms and env["arch"] == "x86_64"
2020-05-01 09:34:23 -03:00
def configure(env):
pass