summaryrefslogtreecommitdiff
path: root/modules/raycast/config.py
blob: 833ad5001812e1d093d49edf5c0524258994bae8 (plain)
1
2
3
4
5
6
7
8
9
10
def can_build(env, platform):
    # Depends on Embree library, which only supports x86_64 and arm64.
    if platform == "windows":
        return env["arch"] == "x86_64"  # TODO build for Windows on ARM

    return env["arch"] in ["x86_64", "arm64"]


def configure(env):
    pass