Import("env")

env = env.Clone()

if env.TargetOSIs('windows'):
    # C4996: '': was declared deprecated
    env.Append(CCFLAGS=['/wd4996'])

env.Library(
    target='sqlite3',
    source=[
        'sqlite/sqlite3.c'
        ],
    )
