mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-12 15:38:59 +01:00
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)
|