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

env = env.Clone()

env.InjectThirdParty(libraries=['boost'])

if env.TargetOSIs('windows'):
    # C4141: 'inline': used more than once
    env.Append(CCFLAGS=['/wd4141'])

env.Append(CPPPATH=['#src', '$BUILD_DIR'])
env.Library("murmurhash3", ["MurmurHash3.cpp"])