dolphin/Source/Core/VideoCommon/Src/SConscript

27 lines
509 B
Python

# -*- python -*-
Import('env')
files = [
"BPMemory.cpp",
"CPMemory.cpp",
"LookUpTables.cpp",
'OpcodeDecoding.cpp',
"TextureDecoder.cpp",
"XFMemory.cpp",
"XFBConvert.cpp",
"PixelShader.cpp",
"PixelShaderManager.cpp",
"VertexShader.cpp",
"VertexShaderManager.cpp",
"ImageWrite.cpp",
"NativeVertexWriter.cpp",
"Statistics.cpp",
"Fifo.cpp",
"VideoState.cpp",
"Profiler.cpp",
]
env_common = env.Clone()
env_common.Append(CXXFLAGS = [ '-fPIC' ])
env_common.StaticLibrary("videocommon", files)