diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-02-22 00:39:38 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-02-22 00:39:38 +0000 |
| commit | 73d575c5c2fe6bf15e29055a438dae8ae7aa0489 (patch) | |
| tree | 2aed1678fa0a209fa61ef1db1451dbc951726729 /Source/Plugins/Plugin_VideoSoftware | |
| parent | 74a6b5638f5e3159b2112dde514da4a23bf5605b (diff) | |
On linux don't compile and link against lzo, soil, and sfml "Externals."
Instead use system libraries liblzo2-dev, libsoil-dev, and libsfml-dev
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5105 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/SConscript b/Source/Plugins/Plugin_VideoSoftware/Src/SConscript index 88f959d102..b9493cb3ef 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/SConscript +++ b/Source/Plugins/Plugin_VideoSoftware/Src/SConscript @@ -42,8 +42,10 @@ compileFlags = [ linkFlags = [ ] libs = [ - 'videocommon', 'soil', 'common' + 'videocommon', 'common' ] +if sys.platform == 'darwin': + libs = ['SOIL'] + libs gfxenv = env.Clone() |
