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
A few of my projects share private libraries that each live in their own git repo.
Instead of making each library a git submodule of each project, I'm using the lib_extra_dirs option to have the library dependency finder notice them.
lib_extra_dirs = /Users/rob/arduino/libs
I would like to refer to the user home directory (not platformio home directory) with a dynamic variable in order to avoid absolute references outside of the project.
lib_extra_dirs = ${env.HOME}/arduino/libs
Something like that?
The text was updated successfully, but these errors were encountered:
A few of my projects share private libraries that each live in their own git repo.
Instead of making each library a git submodule of each project, I'm using the
lib_extra_dirs
option to have the library dependency finder notice them.I would like to refer to the user home directory (not platformio home directory) with a dynamic variable in order to avoid absolute references outside of the project.
Something like that?
The text was updated successfully, but these errors were encountered: