mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Forgot a file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3192 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
c0466334e4
commit
9108a850b7
17
Externals/SOIL/SConscript
vendored
Normal file
17
Externals/SOIL/SConscript
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
# -*- 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']),
|
||||
)
|
||||
env_soil.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_soil.StaticLibrary(env['local_libs'] + "libsoil", files)
|
Loading…
Reference in New Issue
Block a user