dolphin/Source/DSPTool/Src/SConscript

16 lines
163 B
Python
Raw Normal View History

# -*- python -*-
Import('env')
import sys
files = [
'DSPTool.cpp',
]
libs = [
env['common'],
env['dspcore'],
]
env.Program('dsptool', files, LIBS = libs)