summaryrefslogtreecommitdiff
path: root/modules/regex/config.py
blob: 1248a8374d772aab8bb6706398a5dbf2f6d1001f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def can_build(env, platform):
    return not env["arch"].startswith("rv")


def configure(env):
    pass


def get_doc_classes():
    return [
        "RegEx",
        "RegExMatch",
    ]


def get_doc_path():
    return "doc_classes"