17 lines
304 B
Python
17 lines
304 B
Python
Import('env')
|
|
|
|
files = [
|
|
"BPMemory.cpp",
|
|
"CPMemory.cpp",
|
|
"LookUpTables.cpp",
|
|
"TextureDecoder.cpp",
|
|
"XFMemory.cpp",
|
|
"XFBConvert.cpp",
|
|
"Fifo.cpp",
|
|
"VideoState.cpp",
|
|
]
|
|
|
|
env_common = env.Copy()
|
|
env_common.Append(CXXFLAGS = ' ' + ' '.join([ '-fPIC' ]))
|
|
env_common.StaticLibrary("videocommon", files)
|