Files
dolphin/Source/Core/VideoCommon/Src/SConscript
T

28 lines
509 B
Python
Raw Normal View History

2008-09-21 19:54:29 +00:00
# -*- python -*-
Import('env')
files = [
"BPMemory.cpp",
"CPMemory.cpp",
"LookUpTables.cpp",
2008-12-25 20:11:42 +00:00
'OpcodeDecoding.cpp',
"TextureDecoder.cpp",
"XFMemory.cpp",
"XFBConvert.cpp",
"PixelShader.cpp",
"PixelShaderManager.cpp",
"VertexShader.cpp",
2008-12-26 12:47:32 +00:00
"VertexShaderManager.cpp",
"ImageWrite.cpp",
"NativeVertexWriter.cpp",
"Statistics.cpp",
"Fifo.cpp",
"VideoState.cpp",
"Profiler.cpp",
]
env_common = env.Clone()
2008-09-20 22:06:22 +00:00
env_common.Append(CXXFLAGS = [ '-fPIC' ])
env_common.StaticLibrary("videocommon", files)