summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/SConscript
blob: 63d7996662ccad94dc38821efb1c4a53f744c378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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)