2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-07-12 20:40:22 +03:00
|
|
|
Import('env')
|
2010-07-24 20:39:17 +03:00
|
|
|
import os
|
2008-08-07 00:07:31 +03:00
|
|
|
import sys
|
2008-07-12 20:40:22 +03:00
|
|
|
|
2008-08-26 03:18:00 +03:00
|
|
|
files = [
|
2009-10-13 09:12:58 +03:00
|
|
|
'RasterFont.cpp',
|
2008-08-26 03:18:00 +03:00
|
|
|
'Render.cpp',
|
2010-09-28 05:15:02 +03:00
|
|
|
'TextureCache.cpp',
|
2008-10-25 02:08:46 +03:00
|
|
|
'NativeVertexFormat.cpp',
|
2008-12-26 13:23:59 +02:00
|
|
|
'PixelShaderCache.cpp',
|
|
|
|
'VertexShaderCache.cpp',
|
2008-11-11 09:31:40 +02:00
|
|
|
'TextureConverter.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'VertexManager.cpp',
|
2009-06-29 21:40:10 +03:00
|
|
|
'PostProcessing.cpp',
|
|
|
|
'FramebufferManager.cpp',
|
2010-07-17 00:56:40 +03:00
|
|
|
'main.cpp',
|
|
|
|
'GLUtil.cpp'
|
2008-08-26 03:18:00 +03:00
|
|
|
]
|
2010-07-17 00:56:40 +03:00
|
|
|
|
2011-01-29 06:52:19 +02:00
|
|
|
env['LIBS'] += ['videocommon']
|
2011-01-15 16:36:32 +02:00
|
|
|
|
|
|
|
if env['HAVE_WX']:
|
2011-01-29 06:52:19 +02:00
|
|
|
env['LIBS'] += [ 'videouicommon' ]
|
2008-09-21 01:06:22 +03:00
|
|
|
|
2011-01-29 06:52:19 +02:00
|
|
|
env['libvideo'] = env.StaticLibrary(env['local_libs'] + 'video', files)
|