dolphin/Source/DSPTool/Src/SConscript

15 lines
159 B
Python

# -*- python -*-
Import('env')
files = [
'main.cpp',
]
libs = [
'dspcore',
'common',
]
env.Program(env['binary_dir'] + 'dsptool', files, LIBS = libs)