mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
05719ac81a
consistent with the other build systems. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7282 8ced0084-cf51-0410-be5f-012b33b47a6e
39 lines
771 B
Python
39 lines
771 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import os
|
|
import sys
|
|
|
|
files = [
|
|
'Src/BPMemLoader.cpp',
|
|
'Src/CPMemLoader.cpp',
|
|
'Src/Clipper.cpp',
|
|
'Src/DebugUtil.cpp',
|
|
'Src/EfbCopy.cpp',
|
|
'Src/EfbInterface.cpp',
|
|
'Src/HwRasterizer.cpp',
|
|
'Src/OpcodeDecoder.cpp',
|
|
'Src/Rasterizer.cpp',
|
|
'Src/SWCommandProcessor.cpp',
|
|
'Src/SWPixelEngine.cpp',
|
|
'Src/SWRenderer.cpp',
|
|
'Src/SWStatistics.cpp',
|
|
'Src/SWVertexLoader.cpp',
|
|
'Src/SWVideoConfig.cpp',
|
|
'Src/SWmain.cpp',
|
|
'Src/SetupUnit.cpp',
|
|
'Src/Tev.cpp',
|
|
'Src/TextureEncoder.cpp',
|
|
'Src/TextureSampler.cpp',
|
|
'Src/TransformUnit.cpp',
|
|
'Src/XFMemLoader.cpp',
|
|
]
|
|
|
|
if not env['nowx']:
|
|
files += ['Src/VideoConfigDialog.cpp']
|
|
|
|
if sys.platform == 'win32':
|
|
files += ['Src/Win32.cpp']
|
|
|
|
env['LIBS'] += env.StaticLibrary('videosoftware', files)
|