mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00

with static libraries. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7280 8ced0084-cf51-0410-be5f-012b33b47a6e
39 lines
679 B
Python
39 lines
679 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 not env['nowx']:
|
|
files += [ 'VideoConfigDialog.cpp' ]
|
|
|
|
if sys.platform == 'win32':
|
|
files += [ 'Win32.cpp' ]
|
|
|
|
env['LIBS'] += env.StaticLibrary('videosoftware', files)
|