mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
d83d129c38
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7104 8ced0084-cf51-0410-be5f-012b33b47a6e
39 lines
660 B
Python
39 lines
660 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import os
|
|
import sys
|
|
|
|
files = [
|
|
'BPMemLoader.cpp',
|
|
'Clipper.cpp',
|
|
'SWCommandProcessor.cpp',
|
|
'CPMemLoader.cpp',
|
|
'DebugUtil.cpp',
|
|
'EfbCopy.cpp',
|
|
'EfbInterface.cpp',
|
|
'HwRasterizer.cpp',
|
|
'SWmain.cpp',
|
|
'OpcodeDecoder.cpp',
|
|
'SWPixelEngine.cpp',
|
|
'Rasterizer.cpp',
|
|
'SWRenderer.cpp',
|
|
'SetupUnit.cpp',
|
|
'SWStatistics.cpp',
|
|
'Tev.cpp',
|
|
'TextureEncoder.cpp',
|
|
'TextureSampler.cpp',
|
|
'TransformUnit.cpp',
|
|
'SWVertexLoader.cpp',
|
|
'SWVideoConfig.cpp',
|
|
'XFMemLoader.cpp',
|
|
]
|
|
|
|
if env['HAVE_WX']:
|
|
files += [ 'VideoConfigDialog.cpp' ]
|
|
|
|
if sys.platform == 'win32':
|
|
files += [ 'Win32.cpp' ]
|
|
|
|
env['LIBS'] += env.StaticObject(files)
|