dolphin/Source/Plugins/Plugin_VideoOGL/Src/SConscript
Soren Jorvang 18bb65b300 Fix OS X build.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6997 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-01-31 01:53:57 +00:00

22 lines
389 B
Python

# -*- python -*-
Import('env')
import os
import sys
files = [
'RasterFont.cpp',
'Render.cpp',
'TextureCache.cpp',
'NativeVertexFormat.cpp',
'PixelShaderCache.cpp',
'VertexShaderCache.cpp',
'TextureConverter.cpp',
'VertexManager.cpp',
'PostProcessing.cpp',
'FramebufferManager.cpp',
'main.cpp',
'GLUtil.cpp'
]
env.StaticLibrary(env['local_libs'] + 'plugin_videoogl', files)