Files
dolphin/Externals/SOIL/SConscript
nakeee 9a25c5f70b Linux 64 compile fix (fix issue 948)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3199 8ced0084-cf51-0410-be5f-012b33b47a6e
2009-05-11 12:38:20 +00:00

19 lines
330 B
Python

# -*- python -*-
Import('env')
import sys
files = [
'image_DXT.c',
'image_helper.c',
'SOIL.c',
'stb_image_aug.c'
]
env_soil = env.Clone(
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
parse_flags = ['-fPIC']
)
env_soil.StaticLibrary(env['local_libs'] + "libsoil", files)