mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
7 lines
230 B
Python
7 lines
230 B
Python
import glob
|
|
source_list = glob.glob('*.cpp')
|
|
|
|
for x in range(len(source_list)):
|
|
source_list[x] = 'input/' + source_list[x]
|
|
Return('source_list')
|