mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
3ef0eb979d
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@255 8ced0084-cf51-0410-be5f-012b33b47a6e
14 lines
259 B
Python
14 lines
259 B
Python
Import('env')
|
|
|
|
files = ["BPMemory.cpp",
|
|
"CPMemory.cpp",
|
|
"LookUpTables.cpp",
|
|
"TextureDecoder.cpp",
|
|
"XFMemory.cpp",
|
|
"XFBConvert.cpp",
|
|
"Fifo.cpp",
|
|
]
|
|
|
|
env_common = env.Copy(CXXFLAGS = " -fPIC ")
|
|
env_common.StaticLibrary("videocommon", files)
|