summaryrefslogtreecommitdiff
path: root/src/third_party/sqlite-amalgamation-3190300/SConscript
blob: b9d25365c331f94c8da2ef24d773850adde2b8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Import("env")

env = env.Clone()

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

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