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