dolphin/Source/Plugins/Plugin_VideoOGL/Src/SConscript

23 lines
389 B
Python
Raw Normal View History

# -*- 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)