mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-31 14:47:10 +00:00
Remove scons-related files
This commit is contained in:
parent
e25d29bf67
commit
56b1373baf
213 changed files with 0 additions and 49534 deletions
45
Externals/SDL/SConscript
vendored
45
Externals/SDL/SConscript
vendored
|
@ -1,45 +0,0 @@
|
|||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
if env.has_key('shared_sdl') and env['shared_sdl']:
|
||||
Return()
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
Return()
|
||||
|
||||
files = [
|
||||
'src/SDL.c',
|
||||
'src/SDL_error.c',
|
||||
'src/SDL_fatal.c',
|
||||
'src/joystick/SDL_joystick.c',
|
||||
]
|
||||
|
||||
if sys.platform.count('bsd'):
|
||||
env['LIBS'] += ['usbhid']
|
||||
files += [
|
||||
'src/joystick/bsd/SDL_sysjoystick.c',
|
||||
'src/stdlib/SDL_malloc.c',
|
||||
'src/stdlib/SDL_string.c',
|
||||
]
|
||||
elif sys.platform == 'darwin':
|
||||
files += [
|
||||
'src/joystick/darwin/SDL_sysjoystick.c',
|
||||
]
|
||||
elif sys.platform == 'linux2':
|
||||
files += [
|
||||
'src/joystick/linux/SDL_sysjoystick.c',
|
||||
'src/stdlib/SDL_string.c',
|
||||
]
|
||||
elif sys.platform == 'win32':
|
||||
files += [
|
||||
'src/joystick/win32/SDL_mmjoystick.c',
|
||||
]
|
||||
else:
|
||||
files += [
|
||||
'src/joystick/dummy/SDL_sysjoystick.c',
|
||||
]
|
||||
|
||||
env['CPPPATH'] += ['#Externals/SDL', '#Externals/SDL/include']
|
||||
env['LIBS'] += env.StaticLibrary('SDL', files)
|
Loading…
Add table
Add a link
Reference in a new issue