1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# -*- python -*-
Import('env')
files = [
"BPMemory.cpp",
"CPMemory.cpp",
"LookUpTables.cpp",
'OpcodeDecoding.cpp',
"TextureDecoder.cpp",
"XFMemory.cpp",
"XFBConvert.cpp",
"PixelShader.cpp",
"PixelShaderManager.cpp",
"VertexShader.cpp",
"VertexShaderManager.cpp",
"ImageWrite.cpp",
"NativeVertexWriter.cpp",
"Statistics.cpp",
"Fifo.cpp",
"VideoState.cpp",
"Profiler.cpp",
]
env_common = env.Clone()
env_common.Append(CXXFLAGS = [ '-fPIC' ])
env_common.StaticLibrary("videocommon", files)
|