blob: f9af771339841e1ccf3f5552f22dcc6a6cd294d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Import('env')
files = [
"BPMemory.cpp",
"CPMemory.cpp",
"LookUpTables.cpp",
"TextureDecoder.cpp",
"XFMemory.cpp",
"XFBConvert.cpp",
"Fifo.cpp",
"VideoState.cpp",
"Profiler.cpp",
]
env_common = env.Clone()
env_common.Append(CXXFLAGS = [ '-fPIC' ])
env_common.StaticLibrary("videocommon", files)
|