summaryrefslogtreecommitdiffstats
path: root/modules/raycast/config.py
blob: 2fa0058f8838b117b2239930f79f8a6dc269ccfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def can_build(env, platform):
    # Supported architectures and platforms depend on the Embree library.
    if env["arch"] == "arm64" and platform == "windows" and env.msvc:
        return False
    if env["arch"] in ["x86_64", "arm64", "wasm32"]:
        return True
    if env["arch"] == "x86_32" and platform == "windows":
        return True
    return False


def configure(env):
    pass