mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-10 03:27:42 +01:00

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7057 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
262 B
Python
21 lines
262 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
files = [
|
|
'DSPTool.cpp',
|
|
]
|
|
|
|
libs = [
|
|
env['common'],
|
|
env['dspcore'],
|
|
]
|
|
|
|
if sys.platform == 'darwin':
|
|
frames = ['CoreFoundation']
|
|
else:
|
|
frames = []
|
|
|
|
env.Program('dsptool', files, LIBS = libs, FRAMEWORKS = frames)
|