blob: 415e17d5b531a4a07dbb5b9fbb21f46a8628df77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Import('env')
files = ["BPMemory.cpp",
"CPMemory.cpp",
"LookUpTables.cpp",
"TextureDecoder.cpp",
"XFMemory.cpp",
]
env_common = env.Copy(CXXFLAGS = " -fPIC ")
env_common.StaticLibrary("videocommon", files)
|