summaryrefslogtreecommitdiff
path: root/src/third_party/tz/SConscript
blob: b158c433e1fb1b311b4ba12dbf6e932016bcba19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Import("env")

env = env.Clone()

env.Library(
    target="tz",
    source=[
        "timegm.c",
    ],
    LIBDEPS_TAGS=[
        'init-no-global-side-effects',
    ],
)