opengl scons compile fix on linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@990 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a0a21a9877
commit
418f8a2b23
|
@ -16,7 +16,7 @@
|
|||
// http://code.google.com/p/dolphin-emu/
|
||||
|
||||
// Games that uses this UCode:
|
||||
// Zelda: The Windwaker, Mario Sunshine, Mario Kart
|
||||
// Zelda: The Windwaker, Mario Sunshine, Mario Kart, Twilight Princess
|
||||
|
||||
#include "../Globals.h"
|
||||
#include "UCodes.h"
|
||||
|
|
|
@ -99,6 +99,8 @@ else:
|
|||
# Libraries without pkg-config support.
|
||||
libs += [ 'GL', 'Cg', 'CgGL' ]
|
||||
|
||||
|
||||
|
||||
if useSDL:
|
||||
compileFlags += [ '-DUSE_SDL=1' ]
|
||||
|
||||
|
@ -110,5 +112,5 @@ gfxenv.Append(
|
|||
gfxenv.SharedLibrary(
|
||||
'../../../../Binary/%s/Plugins/zeroogl.so' % platform,
|
||||
files,
|
||||
LIBS = libs
|
||||
LIBS = libs + gfxenv['LIBS']
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue