Skip to content

Commit

Permalink
vivado: enable reading xci files
Browse files Browse the repository at this point in the history
Signed-off-by: Wojciech Tatarski <[email protected]>
  • Loading branch information
wtatarski committed Nov 6, 2020
1 parent cb59d75 commit a082397
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions toolchains/vivado.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ def run(self):
'file_type': 'verilogSource'
}
)
elif f.endswith(".xci"):
self.files.append(
{
'name': os.path.realpath(f),
'file_type': 'xci'
}
)

self.files.append(
{
Expand Down

0 comments on commit a082397

Please sign in to comment.