summaryrefslogtreecommitdiff
path: root/Source/Plugins/Plugin_VideoOGL/Src/SConscript
diff options
context:
space:
mode:
authorSoren Jorvang <soren.jorvang@gmail.com>2010-06-03 01:24:26 +0000
committerSoren Jorvang <soren.jorvang@gmail.com>2010-06-03 01:24:26 +0000
commit52c912a59ed7fdfa82aaa33316ef19060eeece90 (patch)
treecf5a31d06915c1c58ae3be181e73ef5137db9c38 /Source/Plugins/Plugin_VideoOGL/Src/SConscript
parent3a7b8c51c66595addaa259ac595a984cf137f54a (diff)
Make wxgl mandatory on OS X.nJoy
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5576 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/SConscript')
-rw-r--r--Source/Plugins/Plugin_VideoOGL/Src/SConscript9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/SConscript b/Source/Plugins/Plugin_VideoOGL/Src/SConscript
index 4793e4b994..2724a150d2 100644
--- a/Source/Plugins/Plugin_VideoOGL/Src/SConscript
+++ b/Source/Plugins/Plugin_VideoOGL/Src/SConscript
@@ -25,8 +25,6 @@ files = [
'PostProcessing.cpp',
'FramebufferManager.cpp',
]
-compileFlags = [
- ]
linkFlags = [
]
libs = [
@@ -48,12 +46,6 @@ if gfxenv['HAVE_WX']:
'Debugger/Debugger.cpp',
]
-if gfxenv['HAVE_COCOA']:
- files += [ 'cocoaGL.m' ]
- compileFlags += [
- '-x',
- 'objective-c++',
- ]
if sys.platform == 'win32':
files += [ 'OS/Win32.cpp' ]
@@ -105,7 +97,6 @@ if gfxenv['USE_WX'] and not gfxenv['HAVE_WX']:
print "Must have wx to use wxgl"
Return()
gfxenv.Append(
- CXXFLAGS = compileFlags,
LINKFLAGS = linkFlags,
)