diff options
| author | nakeee <nakeee@gmail.com> | 2009-04-12 19:56:59 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-04-12 19:56:59 +0000 |
| commit | 0fa8d7683a176948c6dcc640ec1f22bb2f3c5d44 (patch) | |
| tree | 9acf0b01da0acec9fd45b484991c9d13f38f2dae /Source/DSPTool/Src/SConscript | |
| parent | 6369b485387a60483e126e7e0fac8151bcd76f72 (diff) | |
Fixing compile on linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2959 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/DSPTool/Src/SConscript')
| -rw-r--r-- | Source/DSPTool/Src/SConscript | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/DSPTool/Src/SConscript b/Source/DSPTool/Src/SConscript new file mode 100644 index 0000000000..74ca19f354 --- /dev/null +++ b/Source/DSPTool/Src/SConscript @@ -0,0 +1,20 @@ +# -*- python -*- + +Import('env') + +dtenv = env.Clone() + +files = [ + 'main.cpp', + ] + +libs = [ + 'common', + 'dspcore', +] + + +dtenv.Append(CXXFLAGS = [ '-fPIC' ], + LIBS = libs) + +dtenv.Program(dtenv['binary_dir'] + 'dsptool', files) |
