get_libs - 2025.2 English - XD260

Vitis Tutorials: Embedded Software (XD260)

Document ID
XD260
Release Date
2025-12-05
Version
2025.2 English

This will be delivered as a list. Users can iterate through this

for lib in domain_object.get_libs():
    print(lib)

Each object in the list will be delivered as a dictionary with keys; ‘name’, ‘current_path. For example, users can return all the library names

for lib in domain_object.get_libs():
    print(lib['name'])