summaryrefslogtreecommitdiffstats
path: root/modules/raycast/config.py
blob: 0fd35af528f27e2fac208b7d1ca6ff31113e93eb (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":
        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