mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
215baff4c8
With wxWidgets 2.9.2 now in Externals, SCons was the only external dependency other than Xcode and building just SCons from Macports caused a fair mount of extra stuff to be built unnecessarily, so just include a copy of scons-local. Always build wxWidgets from Externals which allows us to get rid of the home-grown autoconf machinery in SconsTests. The main use case for args.cache was the wxconfig option, which is no longer relevant after the above changes and caching options has a lot of potential for confusion, especially since other build systems don't tend to do this, so we no longer do it now. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7381 8ced0084-cf51-0410-be5f-012b33b47a6e
36 lines
714 B
Python
36 lines
714 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']
|
|
|
|
env['LIBS'] += env.StaticLibrary('videosoftware', files)
|