dolphin/Source/DSPTool/Src/SConscript
Soren Jorvang a22d807bf0 Try to fix Windows build.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6968 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-01-29 14:58:32 +00:00

21 lines
246 B
Python

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