mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@30 8ced0084-cf51-0410-be5f-012b33b47a6e
11 lines
198 B
Python
11 lines
198 B
Python
Import('env')
|
|
|
|
files = ["BPMemory.cpp",
|
|
"CPMemory.cpp",
|
|
"LookUpTables.cpp",
|
|
"XFMemory.cpp",
|
|
]
|
|
|
|
env_common = env.Copy(CXXFLAGS = " -fPIC ")
|
|
env_common.StaticLibrary("videocommon", files)
|