dolphin/Externals/LZO/SConscript

14 lines
214 B
Python

# -*- python -*-
Import('env')
if env.has_key('shared_lzo') and env['shared_lzo']:
Return()
files = [
"minilzo.c",
]
env.StaticLibrary(env['local_libs'] + "lzo2", files)
env['CPPPATH'] += ['#Externals/LZO']