20 lines
325 B
Python
20 lines
325 B
Python
# -*- python -*-
|
|
|
|
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)
|