mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 08:39:13 +01:00
7a2cdef912
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@332 8ced0084-cf51-0410-be5f-012b33b47a6e
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)
|