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