You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to build a user c module over github workflows and I was wondering how to add a dependency to a component from the esp component registry?
I understand idf.py add-dependency "espressif/My_Component^0.0.0" won't work because micropython builds the project itself (correct?), but I am searching for an equivalent way, without altering the idf-manifest in the Micropython tree.
Of course, I can integrate the colponent of the dependency in different ways like checking out the respective github-repo in the esp-idf components folder and handling the dependency over the cmake file of my user module with target_include_directories. I am asking if someone knows a better, more elegant and general way for this?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I am trying to build a user c module over github workflows and I was wondering how to add a dependency to a component from the esp component registry?
I understand
idf.py add-dependency "espressif/My_Component^0.0.0"
won't work because micropython builds the project itself (correct?), but I am searching for an equivalent way, without altering the idf-manifest in the Micropython tree.Of course, I can integrate the colponent of the dependency in different ways like checking out the respective github-repo in the esp-idf components folder and handling the dependency over the cmake file of my user module with
target_include_directories
. I am asking if someone knows a better, more elegant and general way for this?Thanks in advance =)
Beta Was this translation helpful? Give feedback.
All reactions