mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 18:35:37 +00:00
3e2419776f
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@591 8ced0084-cf51-0410-be5f-012b33b47a6e
18 lines
386 B
Python
18 lines
386 B
Python
Import('env')
|
|
|
|
files = [
|
|
"minilzo.c",
|
|
]
|
|
|
|
def filterWarnings(flags):
|
|
return ' '.join(
|
|
flag
|
|
for flag in flags
|
|
if not flag.startswith('-W')
|
|
)
|
|
env_lzo = env.Clone(
|
|
CCFLAGS = filterWarnings(env['CCFLAGS']),
|
|
CXXFLAGS = filterWarnings(env['CXXFLAGS']),
|
|
)
|
|
env_lzo.StaticLibrary("minilzo", files)
|