diff options
| author | nakeee <nakeee@gmail.com> | 2009-05-10 11:09:42 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-05-10 11:09:42 +0000 |
| commit | 9108a850b7b1122aa172cd867490a9a2ab846e0e (patch) | |
| tree | 5c34ee5b30790a28de016947aa8cf55c0b06adfe /Externals/SOIL/SConscript | |
| parent | c0466334e4d9458bec5036dbb295ed54f356f52f (diff) | |
Forgot a file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3192 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Externals/SOIL/SConscript')
| -rw-r--r-- | Externals/SOIL/SConscript | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Externals/SOIL/SConscript b/Externals/SOIL/SConscript new file mode 100644 index 0000000000..4762dea99b --- /dev/null +++ b/Externals/SOIL/SConscript @@ -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) |
