summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/SConscript
blob: 5499f422db221e6b3c29e38bd517c082242d8571 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- python -*-

Import('env')

files = [
	'Src/BPFunctions.cpp',
	'Src/BPMemory.cpp',
	'Src/BPStructs.cpp',
	'Src/CPMemory.cpp',
	'Src/CommandProcessor.cpp',
	'Src/DLCache.cpp',
	'Src/Debugger.cpp',
	'Src/Fifo.cpp',
	'Src/FramebufferManagerBase.cpp',
	'Src/HiresTextures.cpp',
	'Src/ImageWrite.cpp',
	'Src/IndexGenerator.cpp',
	'Src/LightingShaderGen.cpp',
	'Src/MainBase.cpp',
	'Src/OnScreenDisplay.cpp',
	'Src/OpcodeDecoding.cpp',
	'Src/OpenCL.cpp',
	'Src/OpenCL/OCLTextureDecoder.cpp',
	'Src/PixelEngine.cpp',
	'Src/PixelShaderGen.cpp',
	'Src/PixelShaderManager.cpp',
	'Src/RenderBase.cpp',
	'Src/Statistics.cpp',
	'Src/TextureCacheBase.cpp',
	'Src/TextureConversionShader.cpp',
	'Src/TextureDecoder.cpp',
	'Src/VertexLoader.cpp',
	'Src/VertexLoaderManager.cpp',
	'Src/VertexLoader_Color.cpp',
	'Src/VertexLoader_Normal.cpp',
	'Src/VertexLoader_Position.cpp',
	'Src/VertexLoader_TextCoord.cpp',
	'Src/VertexManagerBase.cpp',
	'Src/VertexShaderGen.cpp',
	'Src/VertexShaderManager.cpp',
	'Src/VideoConfig.cpp',
	'Src/VideoState.cpp',
	'Src/XFMemory.cpp',
	'Src/XFStructs.cpp',
	'Src/memcpy_amd.cpp',
	]

env['LIBS'] += env.StaticLibrary('videocommon', files)