mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Remove scons-related files
This commit is contained in:
21
Externals/GLew/SConscript
vendored
21
Externals/GLew/SConscript
vendored
@ -1,21 +0,0 @@
|
||||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
if env.has_key('shared_glew') and env['shared_glew']:
|
||||
Return()
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
libs = []
|
||||
frames = ['AGL', 'OpenGL']
|
||||
else:
|
||||
libs = ['GL', 'GLU']
|
||||
frames = []
|
||||
|
||||
glew = env.StaticLibrary('GLEW', 'src/glew.c')
|
||||
libs += glew
|
||||
env.Program('glewinfo', 'src/glewinfo.c', LIBS = libs, FRAMEWORKS = frames)
|
||||
env.Program('visualinfo', 'src/visualinfo.c', LIBS = libs, FRAMEWORKS = frames)
|
||||
env['CPPPATH'] += ['#Externals/GLew/include']
|
||||
env['LIBS'] += glew
|
Reference in New Issue
Block a user