mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06: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:
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)
|
Reference in New Issue
Block a user