# -*- mode: python -*-

Import("env")

env = env.Clone()

env.Append(CCFLAGS=['-Isrc/third_party/s2'])

env.Library(
    "base_s2",
    [ 
	"int128.cc",
	"logging.cc",
	"stringprintf.cc",
	"strtoint.cc",
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
    ],
)
