2006-07-28 06:15:52 +00:00
|
|
|
Import('file_list')
|
|
|
|
my_list = Split("""
|
|
|
|
input.cpp
|
|
|
|
main.cpp
|
|
|
|
sdl.cpp
|
|
|
|
sdl-joystick.cpp
|
|
|
|
sdl-sound.cpp
|
|
|
|
sdl-throttle.cpp
|
|
|
|
sdl-video.cpp
|
|
|
|
unix-netplay.cpp
|
|
|
|
""")
|
2006-07-28 15:35:22 +00:00
|
|
|
|
|
|
|
# XXX need to deal with opengl configuration and testing at some point
|
|
|
|
#sdl-opengl.cpp
|
|
|
|
#sdl-opengl.h
|
|
|
|
|
|
|
|
|
2006-07-28 06:15:52 +00:00
|
|
|
for x in range(len(my_list)):
|
|
|
|
my_list[x] = 'drivers/pc/' + my_list[x]
|
|
|
|
file_list = my_list + file_list
|
|
|
|
Export('file_list')
|