dolphin/Source/DSPTool/Src/SConscript
Soren Jorvang 1619e176ff Use brute force to link the software plugin.
Not yet functional.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7050 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-02-03 19:55:30 +00:00

21 lines
249 B
Python

# -*- python -*-
Import('env')
import sys
files = [
'DSPTool.cpp',
]
libs = [
'core',
'common',
]
if sys.platform == 'darwin':
frames = ['CoreFoundation']
else:
frames = []
env.Program('dsptool', files, LIBS = libs, FRAMEWORKS = frames)