summaryrefslogtreecommitdiff
path: root/Externals/SOIL/SConscript
blob: 600013470788329e90e7b8cd32b090ef3faff4de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- python -*-

Import('env')

if env.has_key('shared_soil') and env['shared_soil']:
	Return()

files = [
	'image_DXT.c',
	'image_helper.c',
	'SOIL.c',
	'stb_image_aug.c'
	]

env['CPPPATH'] += ['#Externals/SOIL']
env['LIBS'] += env.StaticLibrary('SOIL', files)