15 lines
224 B
Python
15 lines
224 B
Python
|
my_list = Split("""
|
||
|
nesvideos-piece.cpp
|
||
|
rgbtorgb.cpp
|
||
|
""")
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
if env['LOGO']:
|
||
|
env.Append(CCFLAGS = "-DHAVE_GD")
|
||
|
|
||
|
for x in range(len(my_list)):
|
||
|
my_list[x] = 'drivers/videolog/' + my_list[x]
|
||
|
Return('my_list')
|
||
|
|