Fix Compiling in OSX

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4523 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1
2009-11-08 23:36:14 +00:00
parent 07408d7625
commit 3c537ec137
4 changed files with 10 additions and 7 deletions

View File

@ -40,8 +40,9 @@ files += [
'main.cpp',
'GLUtil.cpp',
]
if gfxenv['HAVE_OPENCL']:
libs += [ 'OpenCL']
if sys.platform != 'darwin':
if gfxenv['HAVE_OPENCL']:
libs += [ 'OpenCL']
if gfxenv['HAVE_WX']:
files += [
'GUI/ConfigDlg.cpp',
@ -63,6 +64,8 @@ conf = gfxenv.Configure(custom_tests = tests,
if sys.platform == 'darwin':
gfxenv['FRAMEWORKS'] = ['CoreFoundation', 'System', 'OpenGL', 'Cocoa', 'Cg']
if gfxenv['HAVE_OPENCL']:
gfxenv['FRAMEWORKS'] += ['OpenCL']
conf.CheckPKG('OpenGL')
if not conf.CheckPKG('Cg'):