2020-05-01 14:34:23 +02:00
|
|
|
def can_build(env, platform):
|
2020-06-06 20:29:52 +02:00
|
|
|
# Thirdparty dependency OpenImage Denoise includes oneDNN library
|
2021-08-29 00:40:32 +02:00
|
|
|
# and the version we use only supports x86_64.
|
2020-06-06 20:29:52 +02:00
|
|
|
# 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
|
2020-06-06 20:29:52 +02:00
|
|
|
# would be a bit far-fetched.
|
2022-07-20 08:28:22 +02:00
|
|
|
desktop_platforms = ["linuxbsd", "macos", "windows"]
|
2021-12-16 02:38:10 +01:00
|
|
|
return env["tools"] and platform in desktop_platforms and env["arch"] == "x86_64"
|
2020-05-01 14:34:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|