mibuild/generic_platform: add recursive parameter to add_source_dir

This commit is contained in:
Florent Kermarrec 2014-08-01 12:50:38 +02:00 committed by Sebastien Bourdeauducq
parent 8baa957539
commit a0d0742664
1 changed files with 14 additions and 6 deletions

View File

@ -222,12 +222,20 @@ class GenericPlatform:
for f in filenames:
self.add_source(os.path.join(path, f), language)
def add_source_dir(self, path):
for root, dirs, files in os.walk(path):
for filename in files:
language = tools.language_by_filename(filename)
if language is not None:
self.add_source(os.path.join(root, filename), language)
def add_source_dir(self, path, recursive=True):
dir_files = []
if recursive:
for root, dirs, files in os.walk(path):
for filename in files:
dir_files.append(os.path.join(root, filename))
else:
for item in os.listdir(path):
if os.path.isfile(os.path.join(path, item)):
dir_files.append(os.path.join(path, item))
for filename in dir_files:
language = tools.language_by_filename(filename)
if language is not None:
self.add_source(filename, language)
def add_verilog_include_path(self, path):
self.verilog_include_paths.append(os.path.abspath(path))