dolphin/Source/DSPTool/Src/SConscript

15 lines
165 B
Python
Raw Normal View History

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