2008-09-21 22:54:29 +03:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-07-20 14:02:41 +03:00
|
|
|
Import('env')
|
|
|
|
|
2008-08-27 01:28:42 +03:00
|
|
|
files = [
|
2008-12-26 15:19:27 +02:00
|
|
|
'BPMemory.cpp',
|
|
|
|
'CPMemory.cpp',
|
|
|
|
'memcpy_amd.cpp',
|
|
|
|
'LookUpTables.cpp',
|
2008-12-25 22:11:42 +02:00
|
|
|
'OpcodeDecoding.cpp',
|
2008-12-26 15:19:27 +02:00
|
|
|
'TextureDecoder.cpp',
|
|
|
|
'XFMemory.cpp',
|
|
|
|
'XFBConvert.cpp',
|
|
|
|
'PixelShader.cpp',
|
|
|
|
'PixelShaderManager.cpp',
|
|
|
|
'VertexShader.cpp',
|
|
|
|
'VertexShaderManager.cpp',
|
|
|
|
'VertexLoader.cpp',
|
|
|
|
'VertexLoader_Color.cpp',
|
|
|
|
'VertexLoader_Normal.cpp',
|
|
|
|
'VertexLoader_Position.cpp',
|
|
|
|
'VertexLoader_TextCoord.cpp',
|
|
|
|
'ImageWrite.cpp',
|
|
|
|
'NativeVertexWriter.cpp',
|
|
|
|
'Statistics.cpp',
|
|
|
|
'Fifo.cpp',
|
|
|
|
'VideoState.cpp',
|
|
|
|
'Profiler.cpp',
|
2008-08-27 01:28:42 +03:00
|
|
|
]
|
2008-07-20 14:02:41 +03:00
|
|
|
|
2008-09-16 19:50:09 +03:00
|
|
|
env_common = env.Clone()
|
2008-09-21 01:06:22 +03:00
|
|
|
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
2008-07-20 14:02:41 +03:00
|
|
|
env_common.StaticLibrary("videocommon", files)
|