blob: f78edceb1040ccbac6074ac85afc14dd69c4be5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- python -*-
Import('env')
import sys
files = [
'image_DXT.c',
'image_helper.c',
'SOIL.c',
'stb_image_aug.c'
]
env.StaticLibrary(env['local_libs'] + "SOIL", files)
|